├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── binding.gyp ├── bindings ├── c │ ├── tree-sitter-rst.pc.in │ └── tree_sitter │ │ └── tree-sitter-rst.h ├── go │ ├── binding.go │ └── binding_test.go ├── node │ ├── binding.cc │ ├── binding_test.js │ ├── index.d.ts │ └── index.js ├── python │ ├── tests │ │ └── test_binding.py │ └── tree_sitter_rst │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── binding.c │ │ └── py.typed ├── rust │ ├── build.rs │ └── lib.rs └── swift │ ├── TreeSitterRst │ └── rst.h │ └── TreeSitterRstTests │ └── TreeSitterRstTests.swift ├── compile_flags.txt ├── docs ├── .nojekyll ├── index.html └── js │ ├── playground.js │ ├── tree-sitter-parser.wasm │ ├── tree-sitter.js │ └── tree-sitter.wasm ├── go.mod ├── grammar.js ├── package.json ├── pyproject.toml ├── setup.py ├── src ├── grammar.json ├── node-types.json ├── parser.c ├── scanner.c ├── tree_sitter │ ├── alloc.h │ ├── array.h │ └── parser.h └── tree_sitter_rst │ ├── chars.c │ ├── chars.h │ ├── parser.c │ ├── parser.h │ ├── punctuation_chars.h │ ├── scanner.c │ ├── scanner.h │ └── tokens.h ├── test ├── corpus │ ├── body_elements.txt │ ├── inline_markup.txt │ ├── lists.txt │ ├── sections.txt │ └── transitions.txt └── examples │ ├── classes_latex.rst │ ├── compact_lists.rst │ ├── custom_roles.rst │ ├── custom_roles_latex.rst │ ├── cyrillic.rst │ ├── dangerous.rst │ ├── errors.rst │ ├── fail │ └── table_colspan.rst │ ├── field_list.rst │ ├── footnotes.rst │ ├── header_footer.rst │ ├── html5-text-level-tags.rst │ ├── hyperlinking.rst │ ├── latex-problematic.rst │ ├── latex_babel.rst │ ├── latex_cornercases.rst │ ├── latex_docinfo.rst │ ├── latex_encoding.rst │ ├── latex_literal_block.rst │ ├── link_in_substitution.rst │ ├── list_table.rst │ ├── math.rst │ ├── nonalphanumeric.rst │ ├── odt_basic.rst │ ├── odt_classifier.rst │ ├── odt_contents.rst │ ├── odt_custom_headfoot.rst │ ├── odt_footnotes.rst │ ├── odt_header_footer.rst │ ├── odt_literal_block.rst │ ├── odt_nested_class.rst │ ├── odt_no_class.rst │ ├── odt_raw.rst │ ├── odt_tables1.rst │ ├── odt_unnested_class.rst │ ├── option_lists.rst │ ├── pep_html.rst │ ├── section_titles.rst │ ├── simple.rst │ ├── standalone_rst_docutils_xml.rst │ ├── standalone_rst_html4css1.rst │ ├── standalone_rst_html5.rst │ ├── standalone_rst_latex.rst │ ├── standalone_rst_manpage.rst │ ├── standalone_rst_pseudoxml.rst │ ├── standalone_rst_s5_html.rst │ ├── standalone_rst_xetex.rst │ ├── standard.rst │ ├── svg_images.rst │ ├── swf_images.rst │ ├── table_complex.rst │ ├── table_rowspan.rst │ ├── tables_latex.rst │ ├── unicode.rst │ └── urls.rst ├── tree-sitter-rst.wasm ├── tree-sitter.json └── utils └── gen_punctuation_chars.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/c/tree-sitter-rst.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/c/tree-sitter-rst.pc.in -------------------------------------------------------------------------------- /bindings/c/tree_sitter/tree-sitter-rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/c/tree_sitter/tree-sitter-rst.h -------------------------------------------------------------------------------- /bindings/go/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/go/binding.go -------------------------------------------------------------------------------- /bindings/go/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/go/binding_test.go -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/binding_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/node/binding_test.js -------------------------------------------------------------------------------- /bindings/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/node/index.d.ts -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/python/tests/test_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/python/tests/test_binding.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_rst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/python/tree_sitter_rst/__init__.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_rst/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/python/tree_sitter_rst/__init__.pyi -------------------------------------------------------------------------------- /bindings/python/tree_sitter_rst/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/python/tree_sitter_rst/binding.c -------------------------------------------------------------------------------- /bindings/python/tree_sitter_rst/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /bindings/swift/TreeSitterRst/rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/swift/TreeSitterRst/rst.h -------------------------------------------------------------------------------- /bindings/swift/TreeSitterRstTests/TreeSitterRstTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/bindings/swift/TreeSitterRstTests/TreeSitterRstTests.swift -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- 1 | -Isrc/ 2 | -std=c99 3 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/docs/js/playground.js -------------------------------------------------------------------------------- /docs/js/tree-sitter-parser.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/docs/js/tree-sitter-parser.wasm -------------------------------------------------------------------------------- /docs/js/tree-sitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/docs/js/tree-sitter.js -------------------------------------------------------------------------------- /docs/js/tree-sitter.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/docs/js/tree-sitter.wasm -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/go.mod -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/setup.py -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter/alloc.h -------------------------------------------------------------------------------- /src/tree_sitter/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter/array.h -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /src/tree_sitter_rst/chars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/chars.c -------------------------------------------------------------------------------- /src/tree_sitter_rst/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/chars.h -------------------------------------------------------------------------------- /src/tree_sitter_rst/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/parser.c -------------------------------------------------------------------------------- /src/tree_sitter_rst/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/parser.h -------------------------------------------------------------------------------- /src/tree_sitter_rst/punctuation_chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/punctuation_chars.h -------------------------------------------------------------------------------- /src/tree_sitter_rst/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter_rst/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/scanner.h -------------------------------------------------------------------------------- /src/tree_sitter_rst/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/src/tree_sitter_rst/tokens.h -------------------------------------------------------------------------------- /test/corpus/body_elements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/corpus/body_elements.txt -------------------------------------------------------------------------------- /test/corpus/inline_markup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/corpus/inline_markup.txt -------------------------------------------------------------------------------- /test/corpus/lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/corpus/lists.txt -------------------------------------------------------------------------------- /test/corpus/sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/corpus/sections.txt -------------------------------------------------------------------------------- /test/corpus/transitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/corpus/transitions.txt -------------------------------------------------------------------------------- /test/examples/classes_latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/classes_latex.rst -------------------------------------------------------------------------------- /test/examples/compact_lists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/compact_lists.rst -------------------------------------------------------------------------------- /test/examples/custom_roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/custom_roles.rst -------------------------------------------------------------------------------- /test/examples/custom_roles_latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/custom_roles_latex.rst -------------------------------------------------------------------------------- /test/examples/cyrillic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/cyrillic.rst -------------------------------------------------------------------------------- /test/examples/dangerous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/dangerous.rst -------------------------------------------------------------------------------- /test/examples/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/errors.rst -------------------------------------------------------------------------------- /test/examples/fail/table_colspan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/fail/table_colspan.rst -------------------------------------------------------------------------------- /test/examples/field_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/field_list.rst -------------------------------------------------------------------------------- /test/examples/footnotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/footnotes.rst -------------------------------------------------------------------------------- /test/examples/header_footer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/header_footer.rst -------------------------------------------------------------------------------- /test/examples/html5-text-level-tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/html5-text-level-tags.rst -------------------------------------------------------------------------------- /test/examples/hyperlinking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/hyperlinking.rst -------------------------------------------------------------------------------- /test/examples/latex-problematic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex-problematic.rst -------------------------------------------------------------------------------- /test/examples/latex_babel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex_babel.rst -------------------------------------------------------------------------------- /test/examples/latex_cornercases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex_cornercases.rst -------------------------------------------------------------------------------- /test/examples/latex_docinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex_docinfo.rst -------------------------------------------------------------------------------- /test/examples/latex_encoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex_encoding.rst -------------------------------------------------------------------------------- /test/examples/latex_literal_block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/latex_literal_block.rst -------------------------------------------------------------------------------- /test/examples/link_in_substitution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/link_in_substitution.rst -------------------------------------------------------------------------------- /test/examples/list_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/list_table.rst -------------------------------------------------------------------------------- /test/examples/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/math.rst -------------------------------------------------------------------------------- /test/examples/nonalphanumeric.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/nonalphanumeric.rst -------------------------------------------------------------------------------- /test/examples/odt_basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_basic.rst -------------------------------------------------------------------------------- /test/examples/odt_classifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_classifier.rst -------------------------------------------------------------------------------- /test/examples/odt_contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_contents.rst -------------------------------------------------------------------------------- /test/examples/odt_custom_headfoot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_custom_headfoot.rst -------------------------------------------------------------------------------- /test/examples/odt_footnotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_footnotes.rst -------------------------------------------------------------------------------- /test/examples/odt_header_footer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_header_footer.rst -------------------------------------------------------------------------------- /test/examples/odt_literal_block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_literal_block.rst -------------------------------------------------------------------------------- /test/examples/odt_nested_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_nested_class.rst -------------------------------------------------------------------------------- /test/examples/odt_no_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_no_class.rst -------------------------------------------------------------------------------- /test/examples/odt_raw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_raw.rst -------------------------------------------------------------------------------- /test/examples/odt_tables1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_tables1.rst -------------------------------------------------------------------------------- /test/examples/odt_unnested_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/odt_unnested_class.rst -------------------------------------------------------------------------------- /test/examples/option_lists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/option_lists.rst -------------------------------------------------------------------------------- /test/examples/pep_html.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/pep_html.rst -------------------------------------------------------------------------------- /test/examples/section_titles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/section_titles.rst -------------------------------------------------------------------------------- /test/examples/simple.rst: -------------------------------------------------------------------------------- 1 | simple input 2 | -------------------------------------------------------------------------------- /test/examples/standalone_rst_docutils_xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_docutils_xml.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_html4css1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_html4css1.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_html5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_html5.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_latex.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_manpage.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_pseudoxml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_pseudoxml.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_s5_html.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_s5_html.rst -------------------------------------------------------------------------------- /test/examples/standalone_rst_xetex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standalone_rst_xetex.rst -------------------------------------------------------------------------------- /test/examples/standard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/standard.rst -------------------------------------------------------------------------------- /test/examples/svg_images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/svg_images.rst -------------------------------------------------------------------------------- /test/examples/swf_images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/swf_images.rst -------------------------------------------------------------------------------- /test/examples/table_complex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/table_complex.rst -------------------------------------------------------------------------------- /test/examples/table_rowspan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/table_rowspan.rst -------------------------------------------------------------------------------- /test/examples/tables_latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/tables_latex.rst -------------------------------------------------------------------------------- /test/examples/unicode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/unicode.rst -------------------------------------------------------------------------------- /test/examples/urls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/test/examples/urls.rst -------------------------------------------------------------------------------- /tree-sitter-rst.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/tree-sitter-rst.wasm -------------------------------------------------------------------------------- /tree-sitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/tree-sitter.json -------------------------------------------------------------------------------- /utils/gen_punctuation_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsewd/tree-sitter-rst/HEAD/utils/gen_punctuation_chars.py --------------------------------------------------------------------------------