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

test

For inline code surround with single backticks ` which only adds <code></code>: test

Submitted by Danny Groenewegen on 4 September 2014 at 16:58

Log in to post comments