├── .editorconfig ├── .gitattributes ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.rst ├── grammars ├── pseudoxml.cson └── restructuredtext.cson ├── index.js ├── package.json ├── settings └── editor.cson ├── snippets └── restructuredtext.cson └── tests ├── boundaries.rst ├── code.rst ├── comments-1.rst ├── comments-2.rst ├── directives.rst ├── doc.pseudoxml ├── doctests.rst ├── footnotes.rst ├── headings.rst ├── line-blocks.rst ├── links.rst ├── math.rst ├── peps.rst ├── raw.rst ├── refs.rst ├── sphinx-1.rst ├── sphinx-2.rst ├── tables.rst ├── ui.rst └── utils.rst /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/.gitattributes -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/README.md -------------------------------------------------------------------------------- /demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/demo.rst -------------------------------------------------------------------------------- /grammars/pseudoxml.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/grammars/pseudoxml.cson -------------------------------------------------------------------------------- /grammars/restructuredtext.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/grammars/restructuredtext.cson -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/package.json -------------------------------------------------------------------------------- /settings/editor.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/settings/editor.cson -------------------------------------------------------------------------------- /snippets/restructuredtext.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/snippets/restructuredtext.cson -------------------------------------------------------------------------------- /tests/boundaries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/boundaries.rst -------------------------------------------------------------------------------- /tests/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/code.rst -------------------------------------------------------------------------------- /tests/comments-1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/comments-1.rst -------------------------------------------------------------------------------- /tests/comments-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/comments-2.rst -------------------------------------------------------------------------------- /tests/directives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/directives.rst -------------------------------------------------------------------------------- /tests/doc.pseudoxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/doc.pseudoxml -------------------------------------------------------------------------------- /tests/doctests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/doctests.rst -------------------------------------------------------------------------------- /tests/footnotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/footnotes.rst -------------------------------------------------------------------------------- /tests/headings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/headings.rst -------------------------------------------------------------------------------- /tests/line-blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/line-blocks.rst -------------------------------------------------------------------------------- /tests/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/links.rst -------------------------------------------------------------------------------- /tests/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/math.rst -------------------------------------------------------------------------------- /tests/peps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/peps.rst -------------------------------------------------------------------------------- /tests/raw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/raw.rst -------------------------------------------------------------------------------- /tests/refs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/refs.rst -------------------------------------------------------------------------------- /tests/sphinx-1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/sphinx-1.rst -------------------------------------------------------------------------------- /tests/sphinx-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/sphinx-2.rst -------------------------------------------------------------------------------- /tests/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/tables.rst -------------------------------------------------------------------------------- /tests/ui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/ui.rst -------------------------------------------------------------------------------- /tests/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lukasa/language-restructuredtext/HEAD/tests/utils.rst --------------------------------------------------------------------------------