diff --git a/README.md b/README.md index 575fc7b..110ad73 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,115 @@ git-cheatsheet =============== -Repository ini merupakan kumpulan informasi untuk pengoprasian markdown. \ No newline at end of file +Repository ini merupakan kumpulan informasi untuk pengoprasian markdown. + +# Header + +Berikut adalah daftar markdown yang dapat digunakan untuk penulisan Header : +``` +# This is an

tag +## This is an

tag +... +... +###### This is an

tag +``` + +# Emphasis + +Berikut adalah daftar markdown yang dapat digunakan untuk pemformatan karakter : +``` +Baris Miring +============= +*This text will be italic* +_This will also be italic_ + + +Cetak Tebal +============ +**This text will be bold** +__This will also be bold__ + +Baris Miring & Cetak Tebal +=========================== +*You **can** combine them* +_You **can** combine them* +_**You can combine them**_ +``` + +# Quotes + +Berikut adalah daftar markdown yang digunakan untuk memberikan quote pada kalimat : + +``` +As Grace Hopper said: + +> I’ve always been more interested +> in the future than in the past. +``` + +Output : + +As Grace Hopper said: + +> I’ve always been more interested +> in the future than in the past. + + +# List + +Berikut adalah daftar mardown yang digunakan untuk mengurutkan kalimat : + +``` +Unordered +========== +* Item 1 +* Item 2 + * Item 2a + * Item 2b +``` +Output : +* Item 1 +* Item 2 + * Item 2a + * Item 2b + +``` +Ordered +======== +1. Item 1 +2. Item 2 +3. Item 3 + * Item 3a + * Item 3b +``` +Output : +1. Item 1 +2. Item 2 +3. Item 3 + * Item 3a + * Item 3b + +# Image + +Berikut adalah daftar mardown yang digunakan untuk menambahkan gambar : + +``` +Format : + +![Alt Text](url) + +Penerapan : + +![GitHub Logo](/images/logo.png) + +Atau + +![GitHub Logo](http://url-Anda.com) +``` + +Output : + + +![Gif](https://obj-img.s3-id-jkt-1.kilatstorage.id/website.gif) + +#