---
# themes: juejin, github, smartblue, cyanosis, channing-cyan, fancy, hydrogen, condensed-night-purple, greenwillow, v-green, vue-pro, healer-readable, mk-cute, jzman, geek-black, awesome-green, orange, scrolls-light, simplicity-green, arknights, vuepress, Chinese-red, nico, devui-blue
theme juejin
---
## Markdown Basic Syntax
I just love **bold text**. Italicized text is the _cat's meow_. At the command prompt, type `nano`.
My favorite markdown editor is [ByteMD](https://github.com/bytedance/bytemd).
1. First item
2. Second item
3. Third item
> Dorothy followed her through many of the beautiful rooms in her castle.
```js
import { Editor, Viewer } from 'bytemd';
import gfm from '@bytemd/plugin-gfm';
const plugins = [
gfm(),
// Add more plugins here
];
const editor = new Editor({
target: document.body, // DOM to render
props: {
value: '',
plugins,
},
});
I just love bold text. Italicized text is the cat's meow. At the command prompt, type nano
.
My favorite markdown editor is ByteMD.
Dorothy followed her through many of the beautiful rooms in her castle.
import { Editor, Viewer } from 'bytemd';
import gfm from '@bytemd/plugin-gfm';
const plugins = [
gfm(),
// Add more plugins here
];
const editor = new Editor({
target: document.body, // DOM to render
props: {
value: '',
plugins,
},
});
editor.on('change', (e) => {
editor.$set({ value: e.detail.value });
});
Automatic URL Linking: https://github.com/bytedance/bytemd
The world is flat. We now know that the world is round.
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
Here's a simple footnote,1 and here's a longer one.2