Dalam Penulisan markdown sangatlah mudah dan efisien di bandingkan dengan menulis web statik menggunakan syntak syntak HTML. Bagi yang belum paham silahkan pahami terlebih dahulu bagaimana cara menggunakan syntak markdown ini 5 Menit Belajar syntak markdown. contoh syntak penulisan menggunakan markdown Teks Bold

**Here is some bold text**

Hasilnya

Here is some bold text

Heading

## Here is a secondary heading

Hasilnya

Here is a secondary heading

Tabel:

| Number | Next number | Previous number |
| :------ |:--- | :--- |
| Five | Six | Four |
| Ten | Eleven | Nine |
| Seven | Eight | Six |
| Two | Three | One |

Hasilnya

Number Next number Previous number
Five Six Four
Ten Eleven Nine
Seven Eight Six
Two Three One

Penyisipan gambar

![Crepe](http://s3-media3.fl.yelpcdn.com/bphoto/cQ1Yoa75m2yUFFbY2xwuqw/348s.jpg)

Hasilnya

Crepe

Penulisan Syntak

~~~
var foo = function(x) {
  return(x + 5);
}
foo(3)
~~~

hasilnya

var foo = function(x) {
  return(x + 5);
}
foo(3)

Kemudian syntax dengan highlight:

var foo = function(x) {
  return(x + 5);
}
foo(3)

dan syntak higlight dengan line numbers:

1
2
3
4
var foo = function(x) {
  return(x + 5);
}
foo(3)

Boxes

untuk box notifikasi:

Notification

{: .box-note}
**Note:** This is a notification box.

hasilnya

Note: This is a notification box.

Warning

{: .box-warning}
**Warning:** This is a warning box.

hasilnya

Warning: This is a warning box.

Error

{: .box-error}
**Error:** This is an error box.

hasilnya

Error: This is an error box.

Nah cukup mudah bukan bagaimana cara menggunakan markdown