You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Markdown is a lightweight markup language that helps you create formatted text using a plain-text editor. Learn how to use Markdown to write content for your Fern documentation.
4
+
5
+
## Basic Syntax
6
+
7
+
### Text Formatting
8
+
```md
9
+
**bold text**
10
+
*italic text*
11
+
~~strikethrough text~~
12
+
```
13
+
14
+
### Lists
15
+
```md
16
+
- Unordered list item
17
+
- Another item
18
+
- Nested item
19
+
20
+
1. Ordered list item
21
+
2. Another item
22
+
1. Nested item
23
+
```
24
+
25
+
### Links
26
+
```md
27
+
[Link text](url)
28
+
```
29
+
30
+
### Images
31
+
```md
32
+

33
+
```
34
+
35
+
To prevent an image from being zoomable, use the `noZoom` attribute:
0 commit comments