]> git.plutz.net Git - shellwiki/blob - pages/[wiki]/editorhelp/#page.md
more compact editor help
[shellwiki] / pages / [wiki] / editorhelp / #page.md
1 %title Editor Help
2
3 ### Formatting: {half}
4
5 \*\***strong**\*\*      \**emphasized*\*        `~~`~~strikethrough~~`~~`       \``verbatim`\`
6
7 a backslash `\` prevents \*\*accidental formatting\*\*: \\\* \\\`
8
9     # Title
10     ## Headline
11     ### Sub Heading
12     #### etc...
13     
14     ## Heading {half}   <-- half width on large screen
15     ## Heading {center} <-- center text in section
16
17 ### Links: {half}
18
19 Simple Weblink (use angle brackets):  
20 < <https://en.wikipedia.org/wiki/Markdown> >
21
22 Simple Email Link: < <spam@example.com> >
23
24 Weblink with Text:  
25 \[Wikipedia article\](https://en.wikipedia.org/wiki/Markdown)  
26 [Wikipedia article](https://en.wikipedia.org/wiki/Markdown)
27
28 Other pages on the same site:  
29 [Start page](/): `[Start page](/)`,  
30 [Help](/[wiki]/editorhelp/): `[Help](/[wiki]/editorhelp/)`
31
32 ### Lists: {half}
33
34 ````
35 [space] [dash] [space] [text]
36  - bullet
37  - list
38    - indented point
39
40  \- Not a list item
41 ````
42
43 ### Lists (numbered): {half}
44 ````
45 [space] [number] [dot] [space] [text]
46  1. ordered
47  2. list
48     1. indented point
49
50  1\. Not a list item
51 ````