Sha256: 13f6f39482dc5ebd2be92ba2e9242033a1e39300bdba84f2d5edcff01000a753

Contents?: true

Size: 930 Bytes

Versions: 12

Compression:

Stored size: 930 Bytes

Contents

Feature: Change quotes

  As a presentator
  I want to use the quotes which are suitable for my mother tung
  In order to make it look good

  Background:
    Given I use presentation fixture "simple1" with title "My Presentation"

  Scenario: Default quotes
    Given a slide named "01.html.md" with:
    """
    <section>
    # "Hello World"
    </section>
    """
    And the Server is running
    And I go to "/"
    Then I should see:
    """
    “Hello World”
    """

  Scenario: German quotes
    Given a presentation config file for middleman-presentation with:
    """
    smart_quotes:
      - lsquo # opening '
      - rsquo # closing '
      - bdquo # opening "
      - rdquo # opening "
    """
    And a slide named "01.html.md" with:
    """
    <section>
    # "Hello World"
    </section>
    """
    And the Server is running
    And I go to "/"
    Then I should see:
    """
    „Hello World”
    """

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
middleman-presentation-core-0.17.7 features/quoting_markdown.feature
middleman-presentation-core-0.17.6 features/quoting_markdown.feature
middleman-presentation-core-0.17.5 features/quoting_markdown.feature
middleman-presentation-core-0.17.2 features/quoting_markdown.feature
middleman-presentation-core-0.17.1 features/quoting_markdown.feature
middleman-presentation-core-0.17.0 features/quoting_markdown.feature
middleman-presentation-core-0.16.3 features/quoting_markdown.feature
middleman-presentation-core-0.16.2 features/quoting_markdown.feature
middleman-presentation-core-0.16.0 features/quoting_markdown.feature
middleman-presentation-core-0.16.0.rc2 features/quoting_markdown.feature
middleman-presentation-core-0.16.0.rc1 features/quoting_markdown.feature
middleman-presentation-core-0.16.0.beta features/quoting_markdown.feature