Markdown test¶
I hope markdown is being supported. bold and italic and and a url http://blog.readthedocs.com/adding-markdown-support/ should all be working.
Single * means italic and double asterix means bold. For example hi this is a test and another emphasis.
Lists¶
(In this example, leading and trailing spaces are shown with with dots: ⋅)
First ordered list item
Another item
- Unordered sub-list.
- Unordered sub-list2
- Unordered sub-list3
Actual numbers don’t matter, just that it’s a number
- Ordered sub-list
- Ordered sub-list hi
- Ordered sub-list there
- Ordered sub-list blah
And another item.
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we’ll use three here to also align the raw Markdown). To have a line break without a paragraph, you will need to use two trailing spaces. However this ‘two spaces’ technique doesn’t work within recommonmark. Too bad.
Note that this line is separate, but within the same paragraph. (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
- Unordered list can use asterisks
- Unordered list can use asterisks2
- Unordered list can use asterisks3
- Or minuses
- Or minuses2
- Or minuses233
- Or pluses
Code and Syntax Highlighting¶
var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
Readme.md inclusion attempt¶
Won’t work here because this file is pure markdown and not a .rst where you can have .. directives