├── addon └── globalPlugins │ └── Access8Math │ ├── lib │ ├── __init__.py │ ├── nemeth │ │ ├── __init__.py │ │ ├── data │ │ │ ├── number.csv │ │ │ └── letter.csv │ │ ├── translator.py │ │ ├── utils.py │ │ └── grammar.py │ ├── braille.py │ ├── dataProcess.py │ ├── latex │ │ └── GreekAlphabets.csv │ ├── generic │ │ ├── screen.py │ │ ├── window.py │ │ ├── announce.py │ │ ├── singleton_class.py │ │ └── version.py │ └── storage │ │ └── totalCommanderHelper.py │ ├── command │ ├── __init__.py │ ├── clipboard.py │ ├── review.py │ ├── models.py │ ├── context.py │ ├── autocomplete.py │ └── mark.py │ ├── package │ ├── lark │ │ ├── py.typed │ │ ├── grammars │ │ │ ├── __init__.py │ │ │ ├── unicode.lark │ │ │ ├── common.lark │ │ │ └── lark.lark │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ └── earley_common.py │ │ ├── __pyinstaller │ │ │ ├── __init__.py │ │ │ └── hook-lark.py │ │ ├── __init__.py │ │ └── tools │ │ │ └── serialize.py │ ├── jinja2 │ │ ├── py.typed │ │ ├── _identifier.py │ │ ├── defaults.py │ │ ├── constants.py │ │ ├── optimizer.py │ │ └── __init__.py │ ├── markupsafe │ │ ├── py.typed │ │ ├── _speedups.cp311-win32.pyd │ │ ├── _speedups.pyi │ │ └── _native.py │ ├── html5lib │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── alphabeticalattributes.py │ │ │ └── whitespace.py │ │ ├── tests │ │ │ ├── testdata │ │ │ │ ├── .gitattributes │ │ │ │ ├── encoding │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── chardet │ │ │ │ │ │ └── test_big5.txt │ │ │ │ │ └── test-yahoo-jp.dat │ │ │ │ ├── tokenizer │ │ │ │ │ ├── pendingSpecChanges.test │ │ │ │ │ ├── xmlViolation.test │ │ │ │ │ ├── unicodeCharsProblematic.test │ │ │ │ │ └── escapeFlag.test │ │ │ │ ├── tree-construction │ │ │ │ │ ├── scripted │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ │ └── ark.dat │ │ │ │ │ ├── namespace-sensitivity.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── main-element.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── math.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ └── tests12.dat │ │ │ │ ├── AUTHORS.rst │ │ │ │ └── LICENSE │ │ │ ├── __init__.py │ │ │ ├── test_optionaltags_filter.py │ │ │ ├── test_meta.py │ │ │ ├── test_treeadapters.py │ │ │ ├── sanitizer.py │ │ │ ├── tokenizertotree.py │ │ │ └── test_tokenizer2.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ └── py.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── __init__.py │ │ └── treewalkers │ │ │ └── dom.py │ ├── lxml │ │ ├── includes │ │ │ ├── __init__.pxd │ │ │ ├── __init__.py │ │ │ ├── extlibs │ │ │ │ └── __init__.py │ │ │ ├── libxml │ │ │ │ ├── __init__.py │ │ │ │ ├── xmlexports.h │ │ │ │ ├── xmlmodule.h │ │ │ │ ├── dict.h │ │ │ │ ├── nanohttp.h │ │ │ │ └── threads.h │ │ │ ├── libxslt │ │ │ │ ├── __init__.py │ │ │ │ ├── libxslt.h │ │ │ │ ├── preproc.h │ │ │ │ ├── attributes.h │ │ │ │ ├── xsltlocale.h │ │ │ │ ├── win32config.h │ │ │ │ ├── keys.h │ │ │ │ ├── xsltexports.h │ │ │ │ ├── extra.h │ │ │ │ ├── namespaces.h │ │ │ │ ├── imports.h │ │ │ │ ├── functions.h │ │ │ │ └── numbersInternals.h │ │ │ ├── libexslt │ │ │ │ ├── __init__.py │ │ │ │ ├── libexslt.h │ │ │ │ ├── exsltexports.h │ │ │ │ └── exsltconfig.h │ │ │ ├── lxml-version.h │ │ │ ├── config.pxd │ │ │ ├── uri.pxd │ │ │ ├── dtdvalid.pxd │ │ │ ├── xinclude.pxd │ │ │ ├── c14n.pxd │ │ │ ├── schematron.pxd │ │ │ └── xmlschema.pxd │ │ ├── pyclasslookup.py │ │ ├── sax.cp311-win32.pyd │ │ ├── etree.cp311-win32.pyd │ │ ├── builder.cp311-win32.pyd │ │ ├── html │ │ │ ├── diff.cp311-win32.pyd │ │ │ ├── usedoctest.py │ │ │ ├── ElementSoup.py │ │ │ ├── clean.py │ │ │ └── _setmixin.py │ │ ├── objectify.cp311-win32.pyd │ │ ├── _elementpath.cp311-win32.pyd │ │ ├── usedoctest.py │ │ ├── __init__.py │ │ └── isoschematron │ │ │ └── resources │ │ │ └── xsl │ │ │ └── iso-schematron-xslt1 │ │ │ └── iso_schematron_message.xsl │ ├── py_asciimath │ │ ├── grammar │ │ │ ├── __init__.py │ │ │ ├── latex_grammar.py │ │ │ └── asciimath_grammar.py │ │ ├── parser │ │ │ └── __init__.py │ │ ├── utils │ │ │ └── __init__.py │ │ ├── transformer │ │ │ └── __init__.py │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── asciimath2latex.py │ │ │ ├── asciimath2mathml.py │ │ │ ├── latex2asciimath.py │ │ │ └── mathml2tex │ │ │ │ └── mmltex.xsl │ │ ├── translator │ │ │ └── __init__.py │ │ ├── dtd │ │ │ ├── mathml2 │ │ │ │ ├── iso8879 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── isoamsa.ent.svn-base │ │ │ │ │ │ │ ├── isoamsb.ent.svn-base │ │ │ │ │ │ │ ├── isoamsc.ent.svn-base │ │ │ │ │ │ │ ├── isoamsn.ent.svn-base │ │ │ │ │ │ │ ├── isoamso.ent.svn-base │ │ │ │ │ │ │ ├── isoamsr.ent.svn-base │ │ │ │ │ │ │ ├── isobox.ent.svn-base │ │ │ │ │ │ │ ├── isocyr1.ent.svn-base │ │ │ │ │ │ │ ├── isocyr2.ent.svn-base │ │ │ │ │ │ │ ├── isodia.ent.svn-base │ │ │ │ │ │ │ ├── isogrk1.ent.svn-base │ │ │ │ │ │ │ ├── isogrk2.ent.svn-base │ │ │ │ │ │ │ ├── isogrk3.ent.svn-base │ │ │ │ │ │ │ ├── isogrk4.ent.svn-base │ │ │ │ │ │ │ ├── isolat1.ent.svn-base │ │ │ │ │ │ │ ├── isolat2.ent.svn-base │ │ │ │ │ │ │ ├── isonum.ent.svn-base │ │ │ │ │ │ │ ├── isopub.ent.svn-base │ │ │ │ │ │ │ └── isotech.ent.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── isoamsc.ent.svn-base │ │ │ │ │ │ │ ├── isodia.ent.svn-base │ │ │ │ │ │ │ └── isoamso.ent.svn-base │ │ │ │ │ ├── isoamsc.ent │ │ │ │ │ ├── isodia.ent │ │ │ │ │ └── isoamso.ent │ │ │ │ ├── mathml │ │ │ │ │ └── .svn │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── mmlalias.ent.svn-base │ │ │ │ │ │ └── mmlextra.ent.svn-base │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ └── entries │ │ │ │ └── iso9573-13 │ │ │ │ │ └── .svn │ │ │ │ │ ├── prop-base │ │ │ │ │ ├── isoamsa.ent.svn-base │ │ │ │ │ ├── isoamsb.ent.svn-base │ │ │ │ │ ├── isoamsc.ent.svn-base │ │ │ │ │ ├── isoamsn.ent.svn-base │ │ │ │ │ ├── isoamso.ent.svn-base │ │ │ │ │ ├── isoamsr.ent.svn-base │ │ │ │ │ ├── isogrk3.ent.svn-base │ │ │ │ │ ├── isogrk4.ent.svn-base │ │ │ │ │ ├── isomfrk.ent.svn-base │ │ │ │ │ ├── isomopf.ent.svn-base │ │ │ │ │ ├── isomscr.ent.svn-base │ │ │ │ │ └── isotech.ent.svn-base │ │ │ │ │ └── all-wcprops │ │ │ ├── mathml3 │ │ │ │ ├── mathml2.dtd │ │ │ │ ├── mathml2-3.dtd │ │ │ │ └── predefined.ent │ │ │ └── mathml1 │ │ │ │ └── isodia.ent │ │ ├── __main__.py │ │ └── __init__.py │ ├── latex2mathml │ │ ├── py.typed │ │ ├── __init__.py │ │ └── exceptions.py │ ├── version.txt │ └── webencodings │ │ └── mklabels.py │ ├── python │ ├── __init__.py │ ├── version.txt │ └── xml │ │ ├── etree │ │ ├── cElementTree.py │ │ └── __init__.py │ │ ├── parsers │ │ ├── __init__.py │ │ └── expat.py │ │ ├── __init__.py │ │ └── dom │ │ └── NodeFilter.py │ ├── locale │ ├── en │ │ └── braille │ │ │ └── unicode.dic │ ├── es │ │ └── braille │ │ │ └── unicode.dic │ ├── fr │ │ └── braille │ │ │ └── unicode.dic │ ├── tr │ │ └── braille │ │ │ └── unicode.dic │ ├── pt_BR │ │ └── braille │ │ │ └── unicode.dic │ ├── zh_CN │ │ ├── braille │ │ │ └── unicode.dic │ │ └── speech │ │ │ └── math.rule │ └── zh_TW │ │ └── speech │ │ └── math.rule │ ├── web │ └── templates │ │ ├── Access8MathTemplate.zip │ │ └── index.template │ └── delimiter.py ├── manifest-translated.ini.tpl ├── requirements.txt ├── .vscode ├── typings │ └── __builtins__.pyi ├── extensions.json └── settings.json ├── changelog.md ├── .gitignore ├── .pre-commit-config.yaml ├── manifest.ini.tpl ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── build_addon.yml ├── style.css ├── pyproject.toml ├── site_scons └── site_tools │ └── gettexttool │ └── __init__.py └── flake8.ini /addon/globalPlugins/Access8Math/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lark/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/lib/nemeth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/python/version.txt: -------------------------------------------------------------------------------- 1 | 3.11.9 -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/markupsafe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lark/grammars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lark/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/en/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/es/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/fr/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/tr/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/extlibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/libxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/libxslt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/grammar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/pt_BR/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/locale/zh_CN/braille/unicode.dic: -------------------------------------------------------------------------------- 1 | = ⠀⠨⠅⠀ 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/latex2mathml/py.typed: -------------------------------------------------------------------------------- 1 | # PEP 581 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/libexslt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/translator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manifest-translated.ini.tpl: -------------------------------------------------------------------------------- 1 | summary = "{addon_summary}" 2 | description = """{addon_description}""" 3 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/.gitattributes: -------------------------------------------------------------------------------- 1 | *.dat -text diff 2 | *.test -text diff 3 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # Requirements for automated linting (flake8 --config flake8.ini addon) 2 | flake8 ~= 3.7.7 3 | flake8-tabs == 2.1.0 4 | -------------------------------------------------------------------------------- /.vscode/typings/__builtins__.pyi: -------------------------------------------------------------------------------- 1 | def _(msg: str) -> str: 2 | ... 3 | 4 | 5 | def pgettext(context: str, message: str) -> str: 6 | ... 7 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/lxml-version.h: -------------------------------------------------------------------------------- 1 | #ifndef LXML_VERSION_STRING 2 | #define LXML_VERSION_STRING "5.2.2" 3 | #endif 4 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamsa.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamsb.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamsc.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamsn.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamso.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isoamsr.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isobox.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isocyr1.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isocyr2.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isodia.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isogrk1.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isogrk2.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isogrk3.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isogrk4.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isolat1.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isolat2.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isonum.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isopub.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso8879/.svn/prop-base/isotech.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/mathml/.svn/prop-base/mmlalias.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/mathml/.svn/prop-base/mmlextra.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/python/xml/etree/cElementTree.py: -------------------------------------------------------------------------------- 1 | # Deprecated alias for xml.etree.ElementTree 2 | 3 | from xml.etree.ElementTree import * 4 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamsa.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamsb.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamsc.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamsn.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamso.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isoamsr.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isogrk3.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isogrk4.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isomfrk.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isomopf.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isomscr.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/dtd/mathml2/iso9573-13/.svn/prop-base/isotech.ent.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/pyclasslookup.py: -------------------------------------------------------------------------------- 1 | # dummy module for backwards compatibility 2 | 3 | from lxml.etree import PythonElementClassLookup 4 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/config.pxd: -------------------------------------------------------------------------------- 1 | cdef extern from "etree_defs.h": 2 | cdef bint ENABLE_THREADING 3 | cdef bint ENABLE_SCHEMATRON 4 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/sax.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/sax.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lark/grammars/unicode.lark: -------------------------------------------------------------------------------- 1 | // TODO: LETTER, WORD, etc. 2 | 3 | // 4 | // Whitespace 5 | // 6 | WS_INLINE: /[ \t\xa0]/+ 7 | WS: /[ \t\xa0\f\r\n]/+ 8 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/latex2mathml/__init__.py: -------------------------------------------------------------------------------- 1 | # from importlib import metadata 2 | 3 | # __version__ = metadata.version("latex2mathml") 4 | 5 | __version__ = "3.77.0" 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/etree.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/etree.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie 4 | 5 | __all__ = ["Trie"] 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/builder.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/builder.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/html/diff.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/html/diff.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/objectify.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/objectify.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/web/templates/Access8MathTemplate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/web/templates/Access8MathTemplate.zip -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | Use this file to explain what has changed in your add-on since the previous release. This will be included automatically in the release description when used with GitHub actions. 2 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/command/clipboard.py: -------------------------------------------------------------------------------- 1 | import gui 2 | import winUser 3 | 4 | 5 | def clearClipboard(): 6 | with winUser.openClipboard(gui.mainFrame.Handle): 7 | winUser.emptyClipboard() 8 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/_elementpath.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/lxml/_elementpath.cp311-win32.pyd -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/version.txt: -------------------------------------------------------------------------------- 1 | html5lib==1.1 2 | Jinja2==3.1.4 3 | lark==1.1.9 4 | latex2mathml==3.77.0 5 | lxml==5.2.2 6 | markdown2==2.4.13 7 | MarkupSafe==2.1.5 8 | webencodings==0.5.1 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | addon/doc/*.css 2 | addon/doc/en/ 3 | *_docHandler.py 4 | *.html 5 | manifest.ini 6 | *.mo 7 | *.pot 8 | *.py[co] 9 | *.nvda-addon 10 | .sconsign.dblite 11 | /[0-9]*.[0-9]*.[0-9]*.json 12 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/markupsafe/_speedups.cp311-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/markupsafe/_speedups.cp311-win32.pyd -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/pre-commit/pre-commit-hooks 3 | rev: v4.3.0 4 | hooks: 5 | - id: check-ast 6 | - id: check-case-conflict 7 | - id: check-yaml 8 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/encoding/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/encoding/tests1.dat -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lxml/includes/uri.pxd: -------------------------------------------------------------------------------- 1 | cdef extern from "libxml/uri.h" nogil: 2 | ctypedef struct xmlURI 3 | 4 | cdef xmlURI* xmlParseURI(char* str) 5 | cdef void xmlFreeURI(xmlURI* uri) 6 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/py_asciimath/__main__.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | from .py_asciimath import main 4 | 5 | logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.INFO) 6 | 7 | main() 8 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/encoding/chardet/test_big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsengwoody/Access8Math/HEAD/addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/encoding/chardet/test_big5.txt -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/web/templates/index.template: -------------------------------------------------------------------------------- 1 | window.contentConfig = {"title":"{|{ title }|}","latexDelimiter":"{|{ LaTeX_delimiter }|}","display":"{|{ display }|}","documentDisplay":"{|{ document_display }|}","sourceText":`{|{ data }|}`} -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/python/xml/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | """Python interfaces to XML parsers. 2 | 3 | This package contains one module: 4 | 5 | expat -- Python wrapper for James Clark's Expat parser, with namespace 6 | support. 7 | 8 | """ 9 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/lark/__pyinstaller/__init__.py: -------------------------------------------------------------------------------- 1 | # For usage of lark with PyInstaller. See https://pyinstaller-sample-hook.readthedocs.io/en/latest/index.html 2 | 3 | import os 4 | 5 | def get_hook_dirs(): 6 | return [os.path.dirname(__file__)] 7 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/test_optionaltags_filter.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from html5lib.filters.optionaltags import Filter 4 | 5 | 6 | def test_empty(): 7 | assert list(Filter([])) == [] 8 | -------------------------------------------------------------------------------- /addon/globalPlugins/Access8Math/package/html5lib/tests/testdata/tokenizer/pendingSpecChanges.test: -------------------------------------------------------------------------------- 1 | {"tests": [ 2 | 3 | {"description":" 6 | Yahoo! JAPAN 7 | 8 |
23 | #errors 24 | (1,3): expected-doctype-but-got-start-tag 25 | (1,35): unexpected-start-tag-implies-end-tag 26 | (1,35): adoption-agency-1.3 27 | (1,35): adoption-agency-1.3 28 | (1,35): expected-closing-tag-but-got-eof 29 | #document 30 | | 31 | | 32 | | 33 | | 34 | |
35 | | 36 | |