While Wikis and Wikipedia is still in Area 51, I'd like to ask this question about using the Creole wiki markup. I have the following code:
# Initial instructions here.
# Some instructions here. See code snippet below.
{{{
#!python
def foo():
return bar
}}}
# More instructions here. Why does the numbering restart at 1?
# Final instructions.
When that code is parsed, I'd get the following:
1. Initial instructions here.
2. Some instructions here. See code snippet below.
def foo(): return bar1. More continuing instructions here. Why does the numbering restart at 1?
2. Final instructions.
Question: How do I embed code snippets within a list so that the list items below the code snippet won't restart at 1?
Inline preformatted text works in lists. You can use this to approximate block preformatting by separating each line. This isn't a great solution, but it might work for some cases.
Yeilds: