diff -r 000000000000 -r 40c8f766c9b8 src/cm/templates/static/help_format.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/templates/static/help_format.html Mon Nov 23 15:14:29 2009 +0100 @@ -0,0 +1,139 @@ +
*italic* **bold**
+_italic_ __bold__
+
+
+Inline:
+ +An [example](http://url.com/ "Title")
+
+
+Reference-style labels (titles are optional):
+ +An [example][id]. Then, anywhere
+else in the doc, define the link:
+
+ [id]: http://example.com/ "Title"
+
+
+Inline (titles are optional):
+ +
+
+
+Reference-style:
+ +![alt text][id]
+
+ [id]: /url/to/img.jpg "Title"
+
+
+Setext-style:
+ +Header 1
+========
+
+Header 2
+--------
+
+
+
+atx-style (closing #'s are optional):
+ +# Header 1 #
+## Header 2 ##
+
+Ordered, without paragraphs:
+ +1. Foo
+2. Bar
+
+
+
+Unordered, with paragraphs:
+ +* A list item.
+
+ With multiple paragraphs.
+
+* Bar
+
+
+You can nest them:
+ +* First list
+* Illas
+ 1. first item
+ 2. second item
+ * nested item
+ 3. third item
+* back to first list
+
+
+> Email-style angle brackets
+
+> are used for blockquotes.
+
+> > And, they can be nested.
+
+> >
+> * You can quote a list.
+> * Etc.
+
+
+`<code>` spans are delimited
+by backticks.
+
+You can include literal backticks
+like `` `this` ``.
+
+
+Indent every line of a code block by at least 4 spaces or 1 tab, and use a colon at the end of the preceding paragraph.
+ +This is a normal paragraph:
+
+ This is a preformatted
+ code block.
+
+Preceded by a space, the colon
+disappears. :
+
+ This is a preformatted
+ code block.
+
+
+Three or more dashes or asterisks:
+ +---
+
+* * *
+
+- - - -
+
+
+End a line with two or more spaces:
+ +Roses are red,
+Violets are blue.
+
+
+