TextFormattingRules:
How can I add a block element (eg, a code excerpt) and still continue the numbered list, for an effect like this:
Bulleted lists#
Use an asterisk (*) in the first column to make bulleted lists. Use more asterisks for deeper indentation.This
* One \\ one and a half * Two * Three ** Three.One
produces this
- One
one and a half - Two
- Three
- Three.One
Numbered lists#
Just like with bulleted lists, but use a hash (#) instead of the asterisk.This
# One # Two # Three ## Three.One
produces this
- One
- Two
- Three
- Three.One
This
# One # Two #* Two point one #* Two point two # Three
produces this
- One
- Two
- Two point one
- Two point two
- Three
How can I add a block element (eg, a code excerpt) and still continue the numbered list, for an effect like this:
1. Do this.
2. Do that.
3. Add the parameter to the configuration file:
<project name="gummybear"> <parameter name="colour" value="red"/> <parameter name="flavour" value="cherry"/> </project>
4. Re-start the thing.
5. Test it.
Thanks - Greg, 2007.02.13
A: make a normal numbered list, write your text and take linebrakes \\ instead of hitting return, add the code block
This
# Do this. \\ \\ # Do that. \\ \\ # Add the parameter to the configuration file: \\ \\ {{{ <project name="gummybear"> <parameter name="colour" value="red"/> <parameter name="flavour" value="cherry"/> </project> }}} \\ \\ # Re-start the thing. \\ \\ # Test it.
produces this
- Do this.
- Do that.
- Add the parameter to the configuration file:
<project name="gummybear"> <parameter name="colour" value="red"/> <parameter name="flavour" value="cherry"/> </project>
- Re-start the thing.
- Test it.
Add new attachment
Only authorized users are allowed to upload new attachments.
List of attachments
Kind | Attachment Name | Size | Version | Date Modified | Author | Change note |
---|---|---|---|---|---|---|
txt |
webDesignInteressant.txt | 1.6 kB | 1 | 17-May-2011 03:18 | 173.179.173.178 |
TextFormattingRules