]> git.plutz.net Git - shellwiki/blobdiff - pages/[wiki]/editorhelp/#page.md
more compact editor help
[shellwiki] / pages / [wiki] / editorhelp / #page.md
index 930fda393bd73beb70a56b0e12acb0d8cf000425..555d64665842191ed2f8014214c97fe1d93a1572 100644 (file)
@@ -1,31 +1,51 @@
-### Formatting:
+%title Editor Help
+
+### Formatting: {half}
 
 \*\***strong**\*\*     \**emphasized*\*        `~~`~~strikethrough~~`~~`       \``verbatim`\`
 
 a backslash `\` prevents \*\*accidental formatting\*\*: \\\* \\\`
 
-### Links:
+    # Title
+    ## Headline
+    ### Sub Heading
+    #### etc...
+    
+    ## Heading {half}   <-- half width on large screen
+    ## Heading {center} <-- center text in section
+
+### Links: {half}
 
-Simple Weblink (use angle brackets): < <https://en.wikipedia.org/wiki/Markdown> >
+Simple Weblink (use angle brackets):  
+< <https://en.wikipedia.org/wiki/Markdown> >
 
 Simple Email Link: < <spam@example.com> >
 
-Weblink with Text: \[Wikipedia article\](https://en.wikipedia.org/wiki/Markdown) - [Wikipedia article](https://en.wikipedia.org/wiki/Markdown)
+Weblink with Text:  
+\[Wikipedia article\](https://en.wikipedia.org/wiki/Markdown)  
+[Wikipedia article](https://en.wikipedia.org/wiki/Markdown)
 
 Other pages on the same site:  
-[Start page](/): `[Start page](/)`, [Help](/[wiki]/editorhelp/): `[Help](/[wiki]/editorhelp/)`
-
-
-### Lists:
-
-+----------------------------------+---------------------+
-|    [space] [dash] [space] [text] | - bullet            |
-|     - bullet                     | - list              |
-|     - list                       |   - indented point  |
-|       - indented point           |                     |
-+------------------------------------------+---------------------+
-|    [space] [number] [dot] [space] [text] | 1. ordered          |
-|     1. ordered                           | 2. list             |
-|     2. list                              |    1. indented point|
-|        1. indented point                 |                     |
-+------------------------------------------+---------------------+
+[Start page](/): `[Start page](/)`,  
+[Help](/[wiki]/editorhelp/): `[Help](/[wiki]/editorhelp/)`
+
+### Lists: {half}
+
+````
+[space] [dash] [space] [text]
+ - bullet
+ - list
+   - indented point
+
+ \- Not a list item
+````
+
+### Lists (numbered): {half}
+````
+[space] [number] [dot] [space] [text]
+ 1. ordered
+ 2. list
+    1. indented point
+
+ 1\. Not a list item
+````