summaryrefslogtreecommitdiff
path: root/doc/snac.5
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snac.5')
-rw-r--r--doc/snac.58
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/snac.5 b/doc/snac.5
index 8465403..2f3deda 100644
--- a/doc/snac.5
+++ b/doc/snac.5
@@ -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
33Text `between backticks` is formatted as code. 33Text `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 */
37int main(int argc, char *argv[]) 37int main(int argc, char *argv[])
38{ 38{
39 return 0; 39 return 0;
@@ -54,7 +54,9 @@ in the form of ![alt text](image url) are also supported.
54Horizonal rules can be inserted by typing three minus symbols 54Horizonal rules can be inserted by typing three minus symbols
55alone in a line. 55alone in a line.
56.It quoted text 56.It quoted text
57Lines starting with >. 57Lines starting with > (blockquotes).
58.It bullet points
59Lines starting with an asterisk or hyphen plus a space (unsorted lists).
58.It headers 60.It headers
59One, two or three # at the beginning of a line plus a space plus 61One, two or three # at the beginning of a line plus a space plus
60some text are converted to HTML headers. 62some text are converted to HTML headers.