├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── ci.yaml ├── .gitignore ├── .tools └── docs.lua ├── LICENSE ├── Makefile ├── README.md ├── _extensions └── parse-latex │ ├── _extension.yml │ └── parse-latex.lua ├── example.qmd ├── parse-latex.lua └── test ├── perevir └── perevirka.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | Makefile linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tarleb] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site/ 2 | -------------------------------------------------------------------------------- /.tools/docs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/.tools/docs.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/parse-latex/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/_extensions/parse-latex/_extension.yml -------------------------------------------------------------------------------- /_extensions/parse-latex/parse-latex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/_extensions/parse-latex/parse-latex.lua -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/example.qmd -------------------------------------------------------------------------------- /parse-latex.lua: -------------------------------------------------------------------------------- 1 | _extensions/parse-latex/parse-latex.lua -------------------------------------------------------------------------------- /test/perevir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/test/perevir -------------------------------------------------------------------------------- /test/perevirka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarleb/parse-latex/HEAD/test/perevirka.md --------------------------------------------------------------------------------