Build numbered lists

To make a numbered list, use the "hash" (pound sign) token for each list item, with a slash-hash (/#) on a line by itself to mark the end of the list:


    # List item one
    # List item two
    # List item three
    /#

gives you:

  1. List item one
  2. List item two
  3. List item three

Try it out.

Still working on Second Page, change each star token to a hash token, and change the slash-star to a slash-hash:


   # Link back to ((Home)).
   # This link goes to the ((Third Page|next)) page.
   /#

Here's the result:

My second page.

  1. Link back to Home.
  2. This link goes to the next page.