├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── RFCs └── Readme.md ├── docs ├── .vuepress │ ├── config.js │ ├── public │ │ └── img │ │ │ ├── danger.svg │ │ │ ├── info.svg │ │ │ ├── quote-left.svg │ │ │ ├── success.svg │ │ │ └── warning.svg │ └── styles │ │ └── palette.styl ├── Readme.md ├── cn │ ├── Readme.md │ ├── advance │ │ ├── Readme.md │ │ ├── alternative.md │ │ ├── realign.md │ │ ├── shortcomings.md │ │ └── style.md │ ├── basic │ │ ├── Readme.md │ │ ├── block-mode.md │ │ ├── recommend.md │ │ ├── single-line.md │ │ └── text-mode.md │ └── commands │ │ ├── Readme.md │ │ ├── fancy-blocks.md │ │ ├── io.md │ │ └── media.md └── en │ ├── Readme.md │ └── commands │ └── Readme.md ├── netlify.toml └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/README.md -------------------------------------------------------------------------------- /RFCs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/RFCs/Readme.md -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/img/danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/public/img/danger.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/public/img/info.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/quote-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/public/img/quote-left.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/public/img/success.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/public/img/warning.svg -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/Readme.md -------------------------------------------------------------------------------- /docs/cn/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/Readme.md -------------------------------------------------------------------------------- /docs/cn/advance/Readme.md: -------------------------------------------------------------------------------- 1 | # Introduce Advance 2 | 3 | 4 | 5 | 6 | ## space sikp 7 | 8 | 起始的多个空行会被取消 9 | 10 | -------------------------------------------------------------------------------- /docs/cn/advance/alternative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/advance/alternative.md -------------------------------------------------------------------------------- /docs/cn/advance/realign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/advance/realign.md -------------------------------------------------------------------------------- /docs/cn/advance/shortcomings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/advance/shortcomings.md -------------------------------------------------------------------------------- /docs/cn/advance/style.md: -------------------------------------------------------------------------------- 1 | del s 2 | 3 | 4 | strong b 5 | 6 | em i 7 | 8 | ins 9 | -------------------------------------------------------------------------------- /docs/cn/basic/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/basic/Readme.md -------------------------------------------------------------------------------- /docs/cn/basic/block-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/basic/block-mode.md -------------------------------------------------------------------------------- /docs/cn/basic/recommend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/basic/recommend.md -------------------------------------------------------------------------------- /docs/cn/basic/single-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/basic/single-line.md -------------------------------------------------------------------------------- /docs/cn/basic/text-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/basic/text-mode.md -------------------------------------------------------------------------------- /docs/cn/commands/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/commands/Readme.md -------------------------------------------------------------------------------- /docs/cn/commands/fancy-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/commands/fancy-blocks.md -------------------------------------------------------------------------------- /docs/cn/commands/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/commands/io.md -------------------------------------------------------------------------------- /docs/cn/commands/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/cn/commands/media.md -------------------------------------------------------------------------------- /docs/en/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/docs/en/Readme.md -------------------------------------------------------------------------------- /docs/en/commands/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notedge/notedown-language/HEAD/package.json --------------------------------------------------------------------------------