├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── CommonMark.dtd ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_CHECKLIST.md ├── alternative-html-blocks.txt ├── changelog.txt ├── index.js ├── package.json ├── spec.txt ├── test ├── cmark.py ├── normalize.py └── spec_tests.py └── tools ├── make_spec.lua ├── spec2js.js ├── template.commonmark ├── template.html └── template.latex /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | changelog.txt linguist-language=markdown 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jgm] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.bak 3 | spec.html -------------------------------------------------------------------------------- /CommonMark.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/CommonMark.dtd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/RELEASE_CHECKLIST.md -------------------------------------------------------------------------------- /alternative-html-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/alternative-html-blocks.txt -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/changelog.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/package.json -------------------------------------------------------------------------------- /spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/spec.txt -------------------------------------------------------------------------------- /test/cmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/test/cmark.py -------------------------------------------------------------------------------- /test/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/test/normalize.py -------------------------------------------------------------------------------- /test/spec_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/test/spec_tests.py -------------------------------------------------------------------------------- /tools/make_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/tools/make_spec.lua -------------------------------------------------------------------------------- /tools/spec2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/tools/spec2js.js -------------------------------------------------------------------------------- /tools/template.commonmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/tools/template.commonmark -------------------------------------------------------------------------------- /tools/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/tools/template.html -------------------------------------------------------------------------------- /tools/template.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonmark/commonmark-spec/HEAD/tools/template.latex --------------------------------------------------------------------------------