Markdown Demo in ublog
In terms of syntax, it is based on Nuxt Content.
Headers
# H1
## H2
### H3
#### H4
H1
H2
H3
H4
Paragraphs
This is a paragraph.
This is another paragraph.
This is a paragraph.
This is another paragraph.
Emphasis
*italic*
**bold**
***bold italic***
italic
bold
bold italic
Lists
- item 1
- item 2
- item 2.1
- item 2.2
- item 3
- item 1
- item 2
- item 2.1
- item 2.2
- item 3
Ordered Lists
1. item 1
2. item 2
1. item 2.1
2. item 2.2
3. item 2.3
3. item 3
- item 1
- item 2
- item 2.1
- item 2.2
- item 2.3
- item 3
Links
[ublog](https://ublog.dev/blog)
<!-- embed -->
https://ublog.dev/blog
<!-- embed twitter -->
https://x.com/ubugeeei/status/1798343937570332916
ublog
https://ublog.dev/blog
Images
![ublog](https://ublog.dev/__og-image__/image/og.png)
Blockquotes
> This is a blockquote.
This is a blockquote.
Code Blocks
```ts [main.ts]
import { ref } from 'vue';
const count = ref(0);
function increment() {
count.value++;
}
```
import { ref } from 'vue';
const count = ref(0);
function increment() {
count.value++;
}
Code Inline
`const x = 1;`
const x = 1;
Tables
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
Horizontal Rules
---