1. Markdown is better than writing HTML

05 Nov 2016

This page is created using markdown style. It is more intuitive than writing HTML tags. This is better choice for creating a page and modification. Let’s have a see some examples:

Big Title

Small Title

Type of Emphasis

Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

Listing

Code Highlighting

    var s = "JavaScript syntax highlighting";
    alert(s);
1
2
3
 def foo
   puts 'foo'
 end
1
2
 s = "Python syntax highlighting"
 print s
1
2
 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

Qutoas

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.

To have more information about writing in markdown style, please have a visit to this page