diff options
| -rw-r--r-- | doc/snac.5 | 8 |
1 files changed, 5 insertions, 3 deletions
| @@ -26,14 +26,14 @@ A special subset of Markdown is allowed, including: | |||
| 26 | .It italic | 26 | .It italic |
| 27 | *text between a pair of asterisks* | 27 | *text between a pair of asterisks* |
| 28 | .It strikethrough text | 28 | .It strikethrough text |
| 29 | ~~text between a pair of tildes~~ | 29 | ~~text between two pairs of tildes~~ |
| 30 | .It underlined text | 30 | .It underlined text |
| 31 | __text between two pairs of underscores__ | 31 | __text between two pairs of underscores__ |
| 32 | .It code | 32 | .It code |
| 33 | Text `between backticks` is formatted as code. | 33 | Text `between backticks` is formatted as code. |
| 34 | .Bd -literal | 34 | .Bd -literal |
| 35 | ``` | 35 | ``` |
| 36 | /* text between lines with only three backticks is preformatted */ | 36 | /* text between lines starting with three backticks is preformatted */ |
| 37 | int main(int argc, char *argv[]) | 37 | int main(int argc, char *argv[]) |
| 38 | { | 38 | { |
| 39 | return 0; | 39 | return 0; |
| @@ -54,7 +54,9 @@ in the form of  are also supported. | |||
| 54 | Horizonal rules can be inserted by typing three minus symbols | 54 | Horizonal rules can be inserted by typing three minus symbols |
| 55 | alone in a line. | 55 | alone in a line. |
| 56 | .It quoted text | 56 | .It quoted text |
| 57 | Lines starting with >. | 57 | Lines starting with > (blockquotes). |
| 58 | .It bullet points | ||
| 59 | Lines starting with an asterisk or hyphen plus a space (unsorted lists). | ||
| 58 | .It headers | 60 | .It headers |
| 59 | One, two or three # at the beginning of a line plus a space plus | 61 | One, two or three # at the beginning of a line plus a space plus |
| 60 | some text are converted to HTML headers. | 62 | some text are converted to HTML headers. |