Markdown Guide

This guide shows the essential markdown formatting you can use in your notes.

Headings

# Main heading
## Section heading
### Subsection heading

Text Formatting

*Italic text* or _italic text_
**Bold text** or __bold text__
`inline code`
~~strikethrough~~

Lists

- Unordered list item
- Another item
  - Nested item

1. Ordered list item
2. Another item
[Link text](https://example.com)
[[Wiki link to another note]]
[[External link::https://example.com]]

Code Blocks

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

## Blockquotes

```markdown
> This is a blockquote.
> It can span multiple lines.

Tables

| Header 1 | Header 2 |
|----------|----------|
| Content  | Content  |

Math (if enabled)

Inline math: $x = y$
Block math: $$\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}$$

Images

![Alt text](/assets/img/image.jpg)

Horizontal Rules

---

Tips

  • Use clear, descriptive headings
  • Keep paragraphs short and focused
  • Use [[Wiki Links]] to connect related notes
  • Don’t over-format - focus on readability

This covers the most common markdown features you’ll need for your notes.