Markdown Formatting Help: Difference between revisions
Jump to navigation
Jump to search
(Created page with "---Work in Progress---") |
No edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
--- | |||
RangerMSP version 24 and up. | |||
Markdown can be used when writing knowledge base articles. <br> | |||
Markdown supports rich text editing.<br><br> | |||
Markdown in RangerMSP follows the popular markdown syntax suggested by by [https://daringfireball.net/projects/markdown John Gruber’s Daring Fireball].<br><br> | |||
Markdown is intended to be as easy-to-read and easy-to-write as is feasible.<br> | |||
Markdown consists of characters like asterisks, apostrophes, space and other which have a special function.<br> | |||
It also supports inline images, embed external links (URLs), link to your other knowledge base articles and more. <br><br> | |||
Below is a short summary of Markdown options. | |||
For more detailed syntax please refer to [https://daringfireball.net/projects/markdown/ Daring Fireball Markdown] (opens in new window). | |||
{|class="wikitable" | |||
!Markdown syntax | |||
!Result | |||
!Windows client keyboard shortcut | |||
|- | |||
|**This text is bold** | |||
|'''This text is bold''' | |||
|CTRL+B | |||
|- | |||
|**This text is italic** | |||
|''This text is italic'' | |||
|CTRL+I | |||
|- | |||
|***You can combine bold and italic*** | |||
|'''''You can combine bold and italic''''' | |||
| | |||
|- | |||
|`This is a code - fixed width text` | |||
| | |||
This is a code - fixed width text | |||
| | |||
|- | |||
|<nowiki>* List Item1</nowiki> <br> | |||
<nowiki> * List Item2 </nowiki><br> | |||
<nowiki> * Item intended using 4 leading spaces </nowiki><br> | |||
<nowiki> * This item is also intended </nowiki><br> | |||
<nowiki> * List Item3 </nowiki> | |||
| | |||
* List Item1 | |||
* List Item2 | |||
**Item intended using 4 leading spaces | |||
**This item is also intended | |||
*List Item3 | |||
| | |||
|- | |||
|<nowiki>#Header 1</nowiki> | |||
<nowiki>##Header 2</nowiki> | |||
<nowiki>###Header 3</nowiki> | |||
<nowiki>####Header 4</nowiki> | |||
<nowiki>####Header 5</nowiki> | |||
|[[File:Markdown_header_sample.png]] | |||
| | |||
|- | |||
|<nowiki>---</nowiki> | |||
|Horizontal line | |||
| | |||
|} |
Latest revision as of 13:14, 8 July 2020
RangerMSP version 24 and up.
Markdown can be used when writing knowledge base articles.
Markdown supports rich text editing.
Markdown in RangerMSP follows the popular markdown syntax suggested by by John Gruber’s Daring Fireball.
Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
Markdown consists of characters like asterisks, apostrophes, space and other which have a special function.
It also supports inline images, embed external links (URLs), link to your other knowledge base articles and more.
Below is a short summary of Markdown options.
For more detailed syntax please refer to Daring Fireball Markdown (opens in new window).