HeadersFormatting
# Heading 1
## Heading 2
### Heading 3

Heading 1

Heading 2

Heading 3

EmphasisFormatting
**bold** and *italic* and ~~strikethrough~~

bold and italic and strikethrough

FootnotesFormatting
Check this claim[^1] for details.

[^1]: This is the footnote body.

Check this claim1 for details.

Footnotes

  1. This is the footnote body.

BlockquotesFormatting
> This is a blockquote
>
> It can span multiple lines

This is a blockquote

It can span multiple lines

Unordered ListsLists
- First item
- Second item
  - Nested item
- Third item
  • First item
  • Second item
    • Nested item
  • Third item
Ordered ListsLists
1. First
2. Second
3. Third
  1. First
  2. Second
  3. Third
Task ListsLists
- [x] Completed task
- [ ] Pending task
- [ ] Another task
  • Completed task
  • Pending task
  • Another task
LinksLinks & Media
[Link text](https://example.com)

![Alt text](https://picsum.photos/200/100)

Link text

Alt text

Inline CodeCode
Use `backticks` for inline code

Use backticks for inline code

Code BlocksCode
```javascript
function hello() {
  return "world";
}
```
function hello() {
  return "world";
}
TablesTables
| Name | Role |
|------|------|
| Alice | Dev |
| Bob | Design |
Name Role
Alice Dev
Bob Design
WikilinksObsidian
Link to another note with [[My Note]], or set custom text with [[My Note|display text]].

Link to another note with My Note, or set custom text with display text.

EmbedsObsidian
Embed an image or file with ![[diagram.png]] or ![[report.pdf]].

Embed an image or file with

Image diagram.png
diagram.png
or
Pdf report.pdf
report.pdf
.

HighlightsObsidian
This is ==highlighted text== in a sentence.

This is highlighted text in a sentence.

CommentsObsidian
Inline %%author-only note%% that stays faded in preview.

%%
Block comments work too — multi-line notes for yourself.
%%

Inline author-only note that stays faded in preview.

Block comments work too — multi-line notes for yourself.

Note CalloutObsidian
> [!note]
> Important information that users should know.
Note

Important information that users should know.

Tip CalloutObsidian
> [!tip]
> Helpful advice to make things easier.
Tip

Helpful advice to make things easier.

Warning CalloutObsidian
> [!warning]
> Something to be careful about.
Warning

Something to be careful about.

Custom Title CalloutObsidian
> [!note] Custom Title
> Callouts can have custom titles.
Custom Title

Callouts can have custom titles.

Collapsible CalloutObsidian
> [!tip]+ Click to collapse
> This callout starts expanded.
> Click the title to toggle.
Click to collapse

This callout starts expanded. Click the title to toggle.

YouTube EmbedObsidian
![Video](https://www.youtube.com/watch?v=MnXoikTajfI)

X/Twitter EmbedObsidian
![Post by @davidvkimball](https://x.com/davidvkimball/status/1933196479801536736)

Post by @davidvkimballhttps://x.com/davidvkimball/status/1933196479801536736

Media PlaceholdersObsidian
![A diagram](diagram.png)

![My video](recording.mp4)

![Podcast episode](episode.mp3)

![Report](document.pdf)

Image A diagram
diagram.png

Video My video
recording.mp4

Audio Podcast episode
episode.mp3

Pdf Report
document.pdf

SubtextDiscord
-# Small muted caption text under a message

Small muted caption text under a message

UnderlineDiscord
Regular word and __an underlined word__ in a sentence.

Regular word and an underlined word in a sentence.

SpoilerDiscord
The answer is ||42 — click to reveal||.

The answer is 42 — click to reveal.

User mentionDiscord
Heads up <@123456789012345678> — check the new thread.

Heads up @User — check the new thread.

Role mentionDiscord
Calling all <@&987654321098765432> members.

Calling all @Role members.

Channel mentionDiscord
Post updates in <#111222333444555666>.

Post updates in #channel.

Slash commandDiscord
Run </ping:123456789012345678> to check latency.

Run /ping to check latency.

Guild navigationDiscord
Open <id:customize> to pick your roles.

Open Server Customize to pick your roles.

Timestamp (short date/time)Discord
Event starts <t:1783504766> — see you there.

Event starts — see you there.

Timestamp (relative)Discord
Starting <t:1783504766:R>.

Starting .

Timestamp (long date)Discord
The deadline is <t:1783504766:D>.

The deadline is .

Emoji shortcodeDiscord
Nice work :tada: — happy :wink: to see it.

Nice work :tada: — happy :wink: to see it.

FrontmatterObsidian
---
title: My Note
author: Dana Kim
published: 2026-01-15
tags:
  - research
  - notes
---

Content starts below the card.
title
My Note
author
Dana Kim
published
January 15, 2026
tags
research notes

Content starts below the card.

Inline MathKaTeX
Euler's identity: $e^{i\pi} + 1 = 0$

Euler's identity: eiπ+1=0e^{i\pi} + 1 = 0

Display MathKaTeX
$$\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}$$

ex2dx=π\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}

Greek LettersKaTeX
$\alpha, \beta, \gamma, \delta, \theta, \pi, \omega$

α,β,γ,δ,θ,π,ω\alpha, \beta, \gamma, \delta, \theta, \pi, \omega

Fractions & SumsKaTeX
$$\sum_{i=1}^{n} i = \frac{n(n+1)}{2}$$

i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}

FlowchartMermaid
```mermaid
graph TD
    A[Start] --> B{Decision}
    B -->|Yes| C[Do it]
    B -->|No| D[Skip]
```
graph TD A[Start] --> B{Decision} B -->|Yes| C[Do it] B -->|No| D[Skip]
Sequence DiagramMermaid
```mermaid
sequenceDiagram
    User->>Server: Request
    Server-->>User: Response
```
sequenceDiagram User->>Server: Request Server-->>User: Response
Pie ChartMermaid
```mermaid
pie title Traffic
    "Organic" : 45
    "Direct" : 30
    "Social" : 25
```
pie title Traffic "Organic" : 45 "Direct" : 30 "Social" : 25