Preview: Markdown & Code
Published: 27 Maret 2026
H1 — Preview Heading
This is a preview note used to check typography and card layout for the site.
H2 — Secondary Heading
A short paragraph explaining the purpose of this note. Use inline code like const x = 1 to test monospace styles.
H3 — Smaller Section
-
Bullet list item one
-
Bullet list item two
- nested item
H4 — Smallest Heading
Blockquote example — useful for quoting references or short notes.
Code block (JavaScript)
// Example: debounce utility
function debounce(fn, wait = 200) {
let t;
return (...args) => {
clearTimeout(t);
t = setTimeout(() => fn(...args), wait);
};
}
export default debounce;
### Inline code and preformatted
Use npm run dev to run the local preview.
Sample shell block
$ npm install
$ npm run dev
Table
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
| 4 | 5 | 6 |
End of preview note.