Sha256: 5b20289760e18226cf18532695bc1960b4b2869773a7c92e0fb77055dd39fcab

Contents?: true

Size: 878 Bytes

Versions: 8

Compression:

Stored size: 878 Bytes

Contents

Feature: Markdown support
  In order to test included Maruku support

  Scenario: Rendering html
    Given the Server is running at "markdown-app"
    When I go to "/index.html"
    Then I should see "<p>Hello World</p>"
  
  Scenario: Redcarpet 2 extensions
    Given the Server is running at "markdown-app"
    When I go to "/smarty_pants.html"
    Then I should see "&ldquo;"
    When I go to "/no_intra_emphasis.html"
    Then I should not see "<em>"
    When I go to "/tables.html"
    Then I should see "<table>"
    When I go to "/fenced_code_blocks.html"
    Then I should see "<code>"
    When I go to "/autolink.html"
    Then I should see "<a href"
    When I go to "/strikethrough.html"
    Then I should see "<del>"
    When I go to "/space_after_headers.html"
    Then I should not see "<h1>"
    When I go to "/superscript.html"
    Then I should see "<sup>"
    

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
middleman-more-3.0.0.beta.2 features/markdown.feature
middleman-more-3.0.0.beta.1 features/markdown.feature
middleman-more-3.0.0.alpha.9 features/markdown.feature
middleman-more-3.0.0.alpha.8 features/markdown.feature
middleman-more-3.0.0.alpha.7 features/markdown.feature
middleman-3.0.0.alpha.6 features/markdown.feature
middleman-3.0.0.alpha.5 features/markdown.feature
middleman-3.0.0.alpha.4 features/markdown.feature