CHEATSHEET ON MARKDOWN(.md)

CHEATSHEET ON MARKDOWN(.md)

What is Markdown?

Markdown is a plain text formatting syntax used for writing for the internet easier. As we know everywhere the coding tags are clustering the documents, it is the markdown that improves the readability in the form of a plain text document. Although, it's been a plain text document it is possible to add text modifiers such as bold, italics, headings, and many more. It serves as an alternative to WYSIWYG (what you see is what you get) editors, which use rich text that is later translated to proper HTML. You might not be familiar with but Facebook, Skype, and Reddit use different forms of Markdown for their message formatting. Here is the quick cheat sheet for the markdown syntax elements that cover the revert edge case.

###Basic Syntax

SyntaxDescription
Header#H1, ##H2, ###H3
Bold**bold**
Italics*italicized text*
Blockquote> Blockquote
Ordered List1. The first item, 2. The second item, 3. Third item
Unordered List- First item, - Second item, - Third item
Code`code`
Horizontal Rule---
Link[title](example.com)
Image![alt text](image.jpg)
Strikethrough~~This is so funny~~
HighlightLet's highlight these ==important words==.
SubscriptH~2~0
SuperscriptX^2^
Footnote[^1]: This is the footnote.
Underline The quick way is this.
ParagraphText

So here is the basic cheatsheet that we are majorly going to use in our markdown file. To know more and explore advanced markdown syntax, click here.

Did you find this article valuable?

Support Harshal verma by becoming a sponsor. Any amount is appreciated!