Dokumentasi Markdown

Panduan lengkap fitur Markdown yang didukung di Lab WorkSpace dengan contoh interaktif.

Pengantar

Lab WorkSpace menggunakan Marked.js untuk merender konten Markdown. Halaman ini menunjukkan semua fitur Markdown yang didukung dengan contoh interaktif.

Header Emphasis Lists Links Images Code Blockquotes Tables Buttons Dropdowns Syntax Highlighting

Demo Interaktif

Gunakan tombol di bawah untuk melihat berbagai contoh Markdown dan hasil render-nya.

Markdown Source

# Header 1 ## Header 2 ### Header 3 Ini adalah **teks tebal** dan *teks miring*. - Item list 1 - Item list 2 [Link ke Google](https://google.com) `inline code` ``` block code ```

Rendered Output

Headers

Mendukung header dari level 1 sampai 6.

Contoh: # Header 1, ## Header 2, ### Header 3

Emphasis

Teks tebal, miring, dan kombinasi.

Contoh: **tebal**, *miring*, ***tebal miring***

Lists

Daftar berurutan dan tidak berurutan, bersarang.

Contoh: - item, 1. item, nested lists

Links

Link inline dan reference style.

Contoh: [text](url), [text][ref]

Images

Gambar dengan alt text dan title.

Contoh: ![alt](url "title")

Code

Inline code dan code blocks dengan syntax highlighting.

Contoh: `code`, ```language code```

Blockquotes

Kutipan dengan nested content.

Contoh: > quote text

Tables

Tabel dengan alignment support.

Contoh: | col1 | col2 | dengan separator

Fitur Lanjutan

Syntax Highlighting

Code blocks dengan syntax highlighting menggunakan Highlight.js.

```javascript function hello() { console.log("Hello, World!"); } ```
function hello() {
  console.log("Hello, World!");
}

Strikethrough

Teks yang dicoret menggunakan ~~.

~~strikethrough text~~
strikethrough text