Remove the custom verbatim tag in the WebDSL markdown
Remove the custom <verbatim></verbatim> tag in the WebDSL markdown, there are already several ways to achieve this in vanilla markdown:
surround with triple backticks ```
test
or indent with 4 spaces
test
these surround with <pre><code>test</code></pre> in the HTML just like the custom <verbatim></verbatim> tag
Additionally, you could use <pre></pre> for pre without code
testFor inline code surround with single backticks ` which only adds <code></code>:
Submitted by Danny Groenewegen on 4 September 2014 at 16:58test
Log in to post comments