I am creating a numbered list, and I'd like to insert a piece of text at the 'top level' as it were, within the list and not numbered. I have seen how to do this via the following question:
Any better way to create MediaWiki numbered lists?
However, this is really ugly, because the text is indented more than the list items. How can I have the text unindented, i.e. At the normal paragraph indentation? For example:
# Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.
#:
#: Now for the final steps:
#:
# step t
This gets rendered with extra indentation for "Now for the final steps:", something like:
1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.
Now for the final steps:
2. step t
I want it to look like this:
1. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.
Now for the final steps:
2. step t
b`, you can use `
a
b
`. It's more code, but it's also more logically correct. – svick Nov 06 '13 at 13:46