Search code examples
mediawiki

How to embed <pre> tag in a list in a wiki


I am trying to embed a <pre> tag in within an ordered list, of the form:

# Some content
#: <pre>
Some pre-formatted content
</pre>

But it doesn't work. Can someone please let me know on how to achieve what I am trying to do?


Solution

  • This is the better answer for continuing a numbered list after using the <pre> tag without resorting to html:

    # one
    #:<pre>
    #:some stuff
    #:some more stuff</pre>
    # two
    

    Produces:

  • 1. one
       some stuff
       some more stuff
  • 2. two