That's easy; copied from TextFormattingRules:

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

  1. One
  2. Two
  3. Three
    1. Three.One

This

# One
# Two
#* Two point one
#* Two point two
# Three

produces this

  1. One
  2. Two
    • Two point one
    • Two point two
  3. 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

  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.
jb, 07-10-26

Add new attachment

In order to upload a new attachment to this page, please use the following box to find the file, then click on “Upload”.

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
« This page (revision-11) was last changed on 03-Mar-2008 20:26 by KarlHansen