Sha256: 953bff45ce4b64c24230621e9c2bf5aa712e5c6581560b590d8f15ad5162b362

Contents?: true

Size: 633 Bytes

Versions: 2

Compression:

Stored size: 633 Bytes

Contents

Feature: PlantUML Block


  Background: I have a file with PlantUML
    Given I have a file named 'plantuml.md' with:
      """
      ---
      ---

      {% plantuml %}
      Bob->Alice : hello
      {% endplantuml %}
      """

  Scenario: Basic Rendering
    When I run jekyll build
    Then the file '_site/plantuml.html' should exist
    And I should see svg output in '_site/plantuml.html'

  Scenario: It Remove XML Heading
    When I run jekyll build
    Then the file '_site/plantuml.html' should exist
    And I should not see '<\?xml' in '_site/plantuml.html'
    And I should not see '<!DOCTYPE' in '_site/plantuml.html'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-diagrams-0.11.0.pre features/plantuml_block.feature
jekyll-diagrams-0.10.0 features/plantuml/block.feature