# language: en Feature: Open Blocks In order to pass content through unprocessed As a writer I want to be able to mark passthrough content using a pass block Scenario: Render a pass block without performing substitutions by default to HTML Given the AsciiDoc source """ :name: value ++++
{name}
image:tiger.png[] ++++ """ When it is converted to html Then the result should match the HTML source """{name}
image:tiger.png[] """ Scenario: Render a pass block without performing substitutions by default to DocBook Given the AsciiDoc source """ :name: value ++++{name}
image:tiger.png[] ++++ """ When it is converted to html Then the result should match the HTML source """value
"""