Markdown Writing Guide

08/08 10:36

Profile picture of Yoonsoo Kim

Yoonsoo Kim

AI Research Engineer / Kaggle Grandmaster / Creator Of This Website

Markdown is a simple way to format text. You can write text with markdown syntax and markdown renderer will translate it into html so that viewers can see formatted text.

Here are the syntaxes that is supported on this website.

1. Headings

# h1

h1

## h2

h2

### h3

h3

#### h4

h4

2. Unordered Lists

- l0
- l1
	- l1.1
	- l1.2
- l2
  • l0
  • l1
    • l1.1
    • l1.2
  • l2

3. Ordered Lists

1. l0
2. l1
	1. l1.1
	2. l1.2
3. l2
  1. l0
  2. l1
    1. l1.1
    2. l1.2
  3. l2

4. Link

[Markdown Reference](https://commonmark.org/help/)

Markdown Reference

5. Image

![Alt Text](https://ik.imagekit.io/6l7h3dthw/default-image.jpg?ik-sdk-version=javascript-1.4.3&updatedAt=1658452639590)

Alt Text

6. Italic

*This is italic font.*

This is italic font.

7. Bold

**This is bold font.**

This is bold font.

8. Blockquote

> This is blockquote.

This is blockquote.

9. Inline Code

This is `inlineCode`.

This is inlineCode.

10. Code

```javascript
function foo(a) {
	const b = 3;
	return a + b;
}
```
function foo(a) {
	const b = 3;
	return a + b;
}
```python
def foo(a):
	b = 3
	return a + b
```
def foo(a):
	b = 3
	return a + b

11. Inline Math

This is $x = \frac{\sqrt{\gamma}}{\sum_{i=0}^na_i}$$ inline math.

This is x=γi=0naix = \frac{\sqrt{\gamma}}{\sum_{i=0}^na_i} inline math.

12. Math

Content.

$$x = \frac{\sqrt{\gamma}}{\sum_{i=0}^na_i}$$

Content.

Content.

x=γi=0naix = \frac{\sqrt{\gamma}}{\sum_{i=0}^na_i}

Content.

13. Horizontal Line

---

14. Table

| 1  | 2  | 3  | 4  | 4  |
|----|----|----|----|----|
| 5  | 6  | 7  | 8  | 9  |
| 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 |
12344
56789
1011121314
1516171819
© 2024 Yoonsoo.