Markdown / Code / LaTeX Test Page
Headings
H3 Heading
H4 Heading
Text styles
- Bold
- Italic
- Bold + Italic
Strikethroughinline code- Escape test: *literal asterisks*, _literal underscores_, $literal dollar$
Links & Images
- Link: example.com
- Relative link example: Home
- Image (if your renderer supports it):

Lists
Unordered (nested)
- Item A
- Item A-1
- Item A-2
- Item A-2-a
- Item B
Ordered (nested)
- Step 1
- Step 2
- Step 2-1
- Step 2-2
- Step 3
Task list (renderer dependent)
- Done
- Todo
Blockquote
This is a blockquote.
- It can include lists
- And multiple paragraphs
Horizontal rule
Table
| Column | Type | Notes |
|---|---|---|
| name | string | left-aligned |
| count | int | right-aligned |
| score | float | can include inline code |
Footnotes (renderer dependent)
This sentence has a footnote.1
Code blocks
Python
from dataclasses import dataclass
@dataclass
class Config:
lr: float = 1e-4
batch_size: int = 64
def train_step(x, y, model, cfg: Config):
pred = model(x)
loss = ((pred - y) ** 2).mean()
return loss
Bash
set -euo pipefail
echo "Hello, Markdown!"
ls -al
JSON
{
"name": "Gyuseong Lee",
"role": "Computer Vision Researcher",
"interests": ["diffusion", "flow", "data-centric"]
}
YAML
model:
name: "example"
params:
lr: 1e-4
wd: 1e-2
C++ (including templates)
#include <iostream>
#include <vector>
template <typename T>
T sum(const std::vector<T>& v) {
T s{};
for (const auto& x : v) s += x;
return s;
}
int main() {
std::vector<int> v{1,2,3};
std::cout << sum(v) << "\n";
return 0;
}
CUDA-like snippet (syntax highlighting varies)
__global__ void saxpy(int n, float a, const float* x, float* y) {
int i = blockIdx.x * blockDim.x + threadIdx.x;
if (i < n) y[i] = a * x[i] + y[i];
}
Diff
- old_line = 1
+ new_line = 2
LaTeX math
Inline math
We often write an inline equation like ( \sigma(x) = \frac{1}{1 + e^{-x}} ).
Display math
Aligned equations
Matrices
Cases (piecewise)
Common symbols
Edge cases (escaping)
- Asterisk: * not italic *
- Underscore: _ not emphasis _
- Backtick inside code:
use `backticks` safely - Dollar sign: $100 is not math
Footnotes
-
This is the footnote content. ↩