/aNote

Markdown Syntax Guide

1. Headings

Use # for headings. The number of # symbols indicates the level:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

2. Text Style

*Italic text* or _Italic text_
**Bold text** or __Bold text__
***Bold italic text*** or ___Bold italic text___
~~Strikethrough text~~

3. Lists

3.1 Unordered List

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2
* You can use asterisks
+ Or plus signs

3.2 Ordered List

1. First item
2. Second item
   1. Subitem 2.1
   2. Subitem 2.2
3. Third item

3.3 Task List

- [x] Completed task
- [ ] Incomplete task
- [ ] To-do

4. Links

[Link text](https://www.example.com "Optional title")

[Reference-style link][id]
Define it anywhere in the document:
[id]: https://www.example.com "Optional title"

5. Images

![Alt text](image-path "Optional title")

![Local image](./images/example.png)
![Remote image](https://farm1.abox.co/anote/pictures/01.jpg)

6. Blockquotes

> Level 1 quote
> 
>> Level 2 quote
>
> Back to level 1 quote

7. Code

7.1 Inline Code

Use `print('Hello World')` to output content

7.2 Code Block

```python
def hello():
    print("Hello World!")
    return True
```

8. Tables

| Left | Center | Right |
|:-----|:------:|------:|
| Cell | Cell   | Cell  |
| Data | Data   | Data  |

9. Horizontal Rules

---
***
___

10. Other Syntax

10.1 Footnotes

Here's a footnote[^1]

[^1]: This is the footnote content

10.2 Math (Partial Support)

10.2.1 Inline Math

Formula: $E = mc^2$

10.2.2 Block Math

$$
\begin{aligned}
f(x) &= \int_{-\infty}^\infty \hat f(\xi)\,e^{2 \pi i \xi x} \, d\xi \\
\frac{\partial u}{\partial t} = \alpha \nabla^2 u
\end{aligned}
$$

10.3 Escape Characters

Use backslash \ to escape special characters:

\*This won't be parsed as italic\*

10.4 Definition Lists

Term 1
: Definition 1

Term 2
: Definition 2
: Second definition

10.5 Emoji

:smile: :heart: :+1: :-1: :rocket:

See the full list at GitHub Emoji API

10.6 Superscript and Subscript

H ~2~ O is water

E = mc ^2^

10.7 Autolinks

https://abox.co
support@abox.co

<https://abox.co>
<support@abox.co>