Blog Post 2

Comprehensive Markdown Test Post

Table of Contents

  1. Headers

  2. Emphasis

  3. Lists

  4. Links

  5. Images

  6. Code

  7. Tables

  8. Blockquotes

  9. Horizontal Rule

  10. Footnotes

  11. Task Lists

  12. Strikethrough

  13. Emoji

  14. Definition Lists

Headers

\(this is some latex...\)

NEW CHANGE

H1

H2

H3

H4

H5
H6

Emphasis

This text will be italic

This will also be italic

This text will be bold

This will also be bold

You can combine them

Lists

Unordered

Ordered

  1. Item 1

  2. Item 2

  3. Item 3

  4. Item 3a

  5. Item 3b

Link to Google

Link with Title

URLs and URLs in angle brackets will automatically get turned into links.

http://www.example.com or http://www.example.com

Reference-style link

You can use numbers for reference-style link definitions

Or leave it empty and use the link text itself.

Some text to show that the reference links can follow later.

Images

image

Code

Inline code has back-ticks around it.

var s = "JavaScript syntax highlighting";

alert(s);
s = "Python syntax highlighting"

print(s)
No language indicated, so no syntax highlighting.

But let's throw in a <b>tag</b>.

Tables

| Tables | Are | Cool |

| ------------- |:-------------:| -----:|

| col 3 is | right-aligned | $1600 |

| col 2 is | centered | $12 |

| zebra stripes | are neat | $1 |

Blockquotes

Blockquotes are very handy in email to emulate reply text.

This line is part of the same quote.

Quote break.

This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.

Horizontal Rule

Three or more...


Hyphens


Asterisks


Underscores

Footnotes

Here's a sentence with a footnote. 1

Task Lists

Strikethrough

~~This text is strikethrough~~

Emoji

:smile: :heart: :thumbsup:

Definition Lists

Term 1

Definition 1

Term 2

Definition 2a

Definition 2b

That's it! This post covers most Markdown features.


  1. This is the footnote. 

Back to Home