Contents
Tips¶
Text formatting¶
Headings¶
# with overline, for parts
* with overline, for chapters
= for sections
- for subsections
^ for subsubsections
“ for paragraphs
Links¶
External links¶
This is a paragraph that contains a link to Google.
Internal Links (Cross-referencing)¶
reference-guide
Tables¶
Simple table
Column A |
Column B |
Column C |
|---|---|---|
row 1A |
row 1B |
row 1C |
row 2A |
row 2B |
row 2C |
Grid table
Column A |
Column B |
Column C |
|---|---|---|
row 1A |
row 1B |
row 1C |
row 2A |
row 2B |
row 2C |
CSV table
Column A |
Column B |
Column C |
|---|---|---|
row 1A |
row 1B |
row 1C |
row 2A |
row 2B |
row 2C |
Terms¶
- term (up to a line of text)
Definition of the term, which must be indented
and can even consist of multiple paragraphs
- next term
Description.
Blocks¶
Literal Block¶
This is a normal text paragraph. The next paragraph is a code sample:
It is not processed in any way, except
that the indentation is removed.
It can span multiple lines.
This is a normal text paragraph again.
Doctest blocks¶
>>> 1 + 1
2