Updated Wiki.md (markdown)
commited
commit
166ea9101fd33c1339458fc81e62569f0cd7e0b5
... | ... | @@ -8,28 +8,28 @@ In the Wiki page, there is an ability to create new pages, simply by clicking "N |
8 | 8 | |
9 | 9 | Create a page name with the appropriate title. |
10 | 10 | |
11 | If you are writing it in a different section (e.g. Build) write `<section>/\<title>` (e.g. `Build/Set Variable`) to create it within this section. |
|
11 | If you are writing it in a different section (e.g. Build) write `<section>/<title>` (e.g. `Build/Set Variable`) to create it within this section. |
|
12 | 12 | |
13 | 13 | Now you can write a Wiki page! After you have written it all, click "Preview" to make sure everything looks correct. |
14 | 14 | |
15 | 15 | # Style a page |
16 | 16 | |
17 | The Wiki supports the formatting syntax called "[[Markdown|https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet]]". You can easily make *italic*, **bold**, __underlined__ or ~~strikethrough~~ text. To learn how, read [[this|https://support.discordapp.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-]]. |
|
17 | The Wiki supports the formatting syntax called "Markdown". You can easily make *italic*, **bold**, __underlined__ or ~~strikethrough~~ text. Moreover, with Markdown, you also can make lists, add links, insert images in text and even make tables! Read [[this|https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet]] to learn how. |
|
18 | 18 | |
19 | Besides, there are such Wiki-exclusive formatting features as unordered lists, links and images in text. |
|
20 | ||
21 | To insert a list element, put `*`, `+` or `-` at the beginning of a line. Note that there must be one blank line before the first element. |
|
19 | ## Basics |
|
22 | 20 | |
23 | 21 | To insert a link, you can: |
24 | 22 | |
25 | * wrap page name in square brackets: [[Add]] `[[Add]]` |
|
23 | * wrap page name in square brackets: [[Number]] `[[Number]]` |
|
26 | 24 | * do the same but put a suffix if needed: [[Vector]]s `[[Vector]]s` |
27 | * wrap page name in parentheses and set displayed text in square brackets before: [[Plus|Add]] `[[Plus|Add]]` |
|
25 | * wrap page name in parentheses and set displayed text in square brackets before: [[One|Number]] `[[One|Number]]` |
|
28 | 26 | * do the same but put any URL instead of a page name: [[Fancade|http://fancade.com/]] `[[Fancade|http://www.fancade.com/]] ` |
29 | 27 | |
30 | To add an image, drag-n-drop it into the edit form. (It'll upload to `/uploads/<filename>`) |
|
28 | To insert a list element, put `*`, `+` or `-` at the beginning of a line. |
|
29 | ||
30 | To add an image, drag-n-drop it into the edit form. (It will be uploaded to `/uploads/<filename>`) |
|
31 | 31 | |
32 | To insert an image, you can wrap the image URL in `!` to insert it directly in the text. |
|
32 | To insert an existing image, you wrap the image path/URL in square brackets (like you do with regular links/URLs) to insert it directly in the text. |
|
33 | 33 | |
34 | 34 | # Delete a page |
35 | 35 |