All About Markdown Syntaxes for beginner.

All About Markdown Syntaxes for beginner.

Markdown Cheat Sheet.

Format your Monitor Inventory Notes

Markdown is an easy to use language used to format your text. Site24x7 allows the usage of Markdown syntax while adding Monitor inventory notes (Click on any monitor for which you want to add notes and choose the inventory tab. Click on Add Note). Use markdown syntax to add bold, italics, strikethrough, tables, lists, links, code blocks to blocks of texts. You can use markdown syntax to add a brief inventory note about your monitor configuration so as to facilitate sharing and collaboration with other users on-the-go. A few basic syntax rules have been detailed below. Access this link to view the entire markdown syntax.

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

# H1 - Heading 1
## H2 - Heading 2
### H3 - Heading 3
#### H4 - Heading 4
##### H5 - Heading 5
###### H6 - Heading 6

The output will be:

H1 - Heading 1

H2 - Heading 2

H3 - Heading 3

H4 - Heading 4

H5 - Heading 5
H6 - Heading 6

Bold

**bold text**

The output will be:

bold text

Italic

*italicized text*

The output will be:

italicized text

Blockquote

> blockquote

The output will be:

blockquote

Ordered List

1. First item
2. Second item
3. Third item

The output will be:

  1. First item
  2. Second item
  3. Third item

Unordered List

- First item
- Second item
- Third item

The output will be:

  • First item
  • Second item
  • Third item

Code

`code`

The output will be: code

Horizontal Rule

---

The output will be:


[Markdown Guide](https://www.markdownguide.org)

The output will be:

Markdown Guide

Image

![alt text](https://www.markdownguide.org/assets/images/tux.png)

The output will be:

alt text

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

The output will be:

SyntaxDescription
HeaderTitle
ParagraphText

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Definition List

term
: definition

The output will be:

term : definition

Strikethrough


~~The world is flat.~~  We now know that the world is round.

The output will be:

The world is flat. We now know that the world is round.

Task List

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

The output will be:

  • [x] Write the press release
  • [ ] Update the website
  • [ ] Contact the media

Emoji

That is so funny! :joy:

(See also Copying and Pasting Emoji)

Gone camping! :tent: Be back soon.

That is so funny! :joy:

The output will be:

Gone camping! :tent: Be back soon.

That is so funny! :joy:

You can also TRY other emoji at emojipedia

Highlight

I need to highlight these <mark>very important words</mark>.

The output will be:

I need to highlight these very important words.

Subscript

H<sub>2</sub>O

The output will be:

H2O

Superscript

X<sup>2</sup>

The output will be:

X2

And that’s pretty much it. 🙂

I hope this reference guide has been helpful for you!

Thanks to:- Hitesh Chaudhary

alt text