Markdown Formatting

Markdown Formatting

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Heading

# This is an H1 tag
## This is an H2 tag
### This is an H3 tag
#### This is an H4 tag
##### This is an H5 tag
###### This is an H6 tag

Emphasis

*Italic text with asterisk*
_Italic text with underscore_

**Bold text with double asterisk**
__Italic text with double underscore__

***Bold Italic Text***

Italic text with asterisk Italic text with underscore

Bold text with double asterisk Italic text with double underscore

Bold Italic Text

Strike-throughs

~~deleted words~~

~~deleted words~~

Lists

  • Item 1
  • Item 2
  • Item 3
  • Item 4
    • Item 4a
    • Item 4b

Unordered

* Item 1
* Item 2
* Item 3
* Item 4
  * Item 4a
  * Item 4b
  • Item 1
  • Item 2
  • Item 3
  • Item 4
    • Item 4a
    • Item 4b

Ordered

1. Item 1
1. Item 2
1. Item 3
    1. Item 3a
    1. Item 3b
  1. Item 1
  2. Item 2
  3. Item 3
    1. Item 3a
    2. Item 3b

Images

<img
src="http://placehold.jp/300x300.png"
alt="Alt Text"
title="Image Title"
/>
Alt Text

Links

[GitHub](http://github.com)

GitHub

Blockquotes

>One day my mortal body will turn to dust, but the Turkish Republic will stand forever.

One day my mortal body will turn to dust, but the Turkish Republic will stand forever.

Inline code

I think you should use an
`<addr>` element here instead.

I think you should use an <addr> element here instead.

Code Syntax

function alertMarkdown(){
alert(‘Hello Markdown’);
}

Task Lists

- [x] update login UI
- [ ] dashboard UI design.
  • [x] update login UI
  • [ ] dashboard UI design.

Tables

First Header | Second Header
 ------ | ------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column

| First Header | Second Header | | --------------------------- | ---------------------------- | | Content from cell 1 | Content from cell 2 | | Content in the first column | Content in the second column |

Horizontal Rules

***
* * * * *


Collapse Sections

<details>
<summary>”Click Here to expand”</summary>
this is hidden text block.
</details>
Details

Something small enough to escape casual notice.

Article Reference:

https://medium.com/echohub/write-simple-and-effective-markdown-tips-8e01fdddd70