├── .github ├── ISSUE_TEMPLATE │ └── bug-report-or-troubleshooting-request.md └── workflows │ ├── codeql-analysis.yml │ ├── copr.yml │ ├── launchpad.yml │ ├── macos-build.yml │ └── main.yml ├── .gitignore ├── .release-it.json ├── .travis.yml ├── 3rdparty ├── MathJax │ ├── bin │ │ ├── LICENSE │ │ ├── a11y │ │ │ ├── assistive-mml.js │ │ │ ├── complexity.js │ │ │ ├── explorer.js │ │ │ └── semantic-enrich.js │ │ ├── adaptors │ │ │ └── liteDOM.js │ │ ├── core.js │ │ ├── input │ │ │ ├── asciimath.js │ │ │ ├── mml.js │ │ │ ├── mml │ │ │ │ └── entities.js │ │ │ ├── tex-base.js │ │ │ ├── tex-full.js │ │ │ ├── tex.js │ │ │ └── tex │ │ │ │ └── extensions │ │ │ │ ├── action.js │ │ │ │ ├── all-packages.js │ │ │ │ ├── ams.js │ │ │ │ ├── amscd.js │ │ │ │ ├── autoload.js │ │ │ │ ├── bbox.js │ │ │ │ ├── boldsymbol.js │ │ │ │ ├── braket.js │ │ │ │ ├── bussproofs.js │ │ │ │ ├── cancel.js │ │ │ │ ├── color.js │ │ │ │ ├── colorv2.js │ │ │ │ ├── configmacros.js │ │ │ │ ├── enclose.js │ │ │ │ ├── extpfeil.js │ │ │ │ ├── html.js │ │ │ │ ├── mhchem.js │ │ │ │ ├── newcommand.js │ │ │ │ ├── noerrors.js │ │ │ │ ├── noundefined.js │ │ │ │ ├── physics.js │ │ │ │ ├── require.js │ │ │ │ ├── tagformat.js │ │ │ │ ├── textmacros.js │ │ │ │ ├── unicode.js │ │ │ │ └── verb.js │ │ ├── latest.js │ │ ├── loader.js │ │ ├── mml-chtml.js │ │ ├── mml-svg.js │ │ ├── node-main.js │ │ ├── output │ │ │ ├── chtml.js │ │ │ ├── chtml │ │ │ │ └── fonts │ │ │ │ │ ├── tex.js │ │ │ │ │ └── woff-v2 │ │ │ │ │ ├── MathJax_AMS-Regular.woff │ │ │ │ │ ├── MathJax_Calligraphic-Bold.woff │ │ │ │ │ ├── MathJax_Calligraphic-Regular.woff │ │ │ │ │ ├── MathJax_Fraktur-Bold.woff │ │ │ │ │ ├── MathJax_Fraktur-Regular.woff │ │ │ │ │ ├── MathJax_Main-Bold.woff │ │ │ │ │ ├── MathJax_Main-Italic.woff │ │ │ │ │ ├── MathJax_Main-Regular.woff │ │ │ │ │ ├── MathJax_Math-BoldItalic.woff │ │ │ │ │ ├── MathJax_Math-Italic.woff │ │ │ │ │ ├── MathJax_Math-Regular.woff │ │ │ │ │ ├── MathJax_SansSerif-Bold.woff │ │ │ │ │ ├── MathJax_SansSerif-Italic.woff │ │ │ │ │ ├── MathJax_SansSerif-Regular.woff │ │ │ │ │ ├── MathJax_Script-Regular.woff │ │ │ │ │ ├── MathJax_Size1-Regular.woff │ │ │ │ │ ├── MathJax_Size2-Regular.woff │ │ │ │ │ ├── MathJax_Size3-Regular.woff │ │ │ │ │ ├── MathJax_Size4-Regular.woff │ │ │ │ │ ├── MathJax_Typewriter-Regular.woff │ │ │ │ │ ├── MathJax_Vector-Bold.woff │ │ │ │ │ ├── MathJax_Vector-Regular.woff │ │ │ │ │ └── MathJax_Zero.woff │ │ │ ├── svg.js │ │ │ └── svg │ │ │ │ └── fonts │ │ │ │ └── tex.js │ │ ├── sre │ │ │ ├── mathmaps │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── mathmaps_ie.js │ │ │ │ └── nemeth.js │ │ │ ├── sre-node.js │ │ │ └── sre_browser.js │ │ ├── startup.js │ │ ├── tex-chtml-full.js │ │ ├── tex-chtml.js │ │ ├── tex-mml-chtml.js │ │ ├── tex-mml-svg.js │ │ ├── tex-svg-full.js │ │ ├── tex-svg.js │ │ └── ui │ │ │ ├── menu.js │ │ │ └── safe.js │ └── src │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── components │ │ ├── bin │ │ │ ├── build │ │ │ ├── copy │ │ │ ├── makeAll │ │ │ └── pack │ │ ├── src │ │ │ ├── a11y │ │ │ │ ├── assistive-mml │ │ │ │ │ ├── assistive-mml.js │ │ │ │ │ ├── build.json │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── complexity │ │ │ │ │ ├── build.json │ │ │ │ │ ├── complexity.js │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── explorer │ │ │ │ │ ├── build.json │ │ │ │ │ ├── explorer.js │ │ │ │ │ └── webpack.config.js │ │ │ │ └── semantic-enrich │ │ │ │ │ ├── build.json │ │ │ │ │ ├── semantic-enrich.js │ │ │ │ │ └── webpack.config.js │ │ │ ├── adaptors │ │ │ │ └── liteDOM │ │ │ │ │ ├── build.json │ │ │ │ │ ├── liteDOM.js │ │ │ │ │ └── webpack.config.js │ │ │ ├── core │ │ │ │ ├── build.json │ │ │ │ ├── core.js │ │ │ │ └── webpack.config.js │ │ │ ├── dependencies.js │ │ │ ├── input │ │ │ │ ├── asciimath │ │ │ │ │ ├── asciimath.js │ │ │ │ │ ├── build.json │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── mml │ │ │ │ │ ├── build.json │ │ │ │ │ ├── entities │ │ │ │ │ │ ├── entities.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── mml.js │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── tex-base │ │ │ │ │ ├── build.json │ │ │ │ │ ├── tex-base.js │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── tex-full │ │ │ │ │ ├── build.json │ │ │ │ │ ├── tex-full.js │ │ │ │ │ └── webpack.config.js │ │ │ │ └── tex │ │ │ │ │ ├── build.json │ │ │ │ │ ├── extensions │ │ │ │ │ ├── action │ │ │ │ │ │ ├── action.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── all-packages │ │ │ │ │ │ ├── all-packages.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── ams │ │ │ │ │ │ ├── ams.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── amscd │ │ │ │ │ │ ├── amscd.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── autoload │ │ │ │ │ │ ├── autoload.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── bbox │ │ │ │ │ │ ├── bbox.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── boldsymbol │ │ │ │ │ │ ├── boldsymbol.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── braket │ │ │ │ │ │ ├── braket.js │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── bussproofs │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── bussproofs.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── cancel │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── cancel.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── color │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── color.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── colorv2 │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── colorv2.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── configmacros │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── configmacros.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── enclose │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── enclose.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── extpfeil │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── extpfeil.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── html │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── mhchem │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── mhchem.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── newcommand │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── newcommand.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── noerrors │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── noerrors.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── noundefined │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── noundefined.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── physics │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── physics.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── require │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── require.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── tagformat │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── tagformat.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── textmacros │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── textmacros.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── unicode │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── unicode.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ └── verb │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── verb.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── register.js │ │ │ │ │ ├── tex.js │ │ │ │ │ └── webpack.config.js │ │ │ ├── latest │ │ │ │ ├── latest.js │ │ │ │ └── webpack.config.js │ │ │ ├── loader │ │ │ │ ├── build.json │ │ │ │ ├── loader.js │ │ │ │ └── webpack.config.js │ │ │ ├── mml-chtml │ │ │ │ ├── mml-chtml.js │ │ │ │ ├── preload.js │ │ │ │ └── webpack.config.js │ │ │ ├── mml-svg │ │ │ │ ├── mml-svg.js │ │ │ │ ├── preload.js │ │ │ │ └── webpack.config.js │ │ │ ├── node-main │ │ │ │ ├── copy.json │ │ │ │ ├── node-main.js │ │ │ │ └── webpack.config.js │ │ │ ├── output │ │ │ │ ├── chtml │ │ │ │ │ ├── build.json │ │ │ │ │ ├── chtml.js │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── tex │ │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ │ ├── copy.json │ │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── nofont.js │ │ │ │ │ └── webpack.config.js │ │ │ │ └── svg │ │ │ │ │ ├── build.json │ │ │ │ │ ├── fonts │ │ │ │ │ └── tex │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ └── webpack.config.js │ │ │ │ │ ├── nofont.js │ │ │ │ │ ├── svg.js │ │ │ │ │ └── webpack.config.js │ │ │ ├── source.js │ │ │ ├── sre │ │ │ │ └── copy.json │ │ │ ├── startup │ │ │ │ ├── build.json │ │ │ │ ├── startup.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-chtml-full │ │ │ │ ├── preload.js │ │ │ │ ├── tex-chtml-full.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-chtml │ │ │ │ ├── preload.js │ │ │ │ ├── tex-chtml.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-mml-chtml │ │ │ │ ├── preload.js │ │ │ │ ├── tex-mml-chtml.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-mml-svg │ │ │ │ ├── preload.js │ │ │ │ ├── tex-mml-svg.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-svg-full │ │ │ │ ├── preload.js │ │ │ │ ├── tex-svg-full.js │ │ │ │ └── webpack.config.js │ │ │ ├── tex-svg │ │ │ │ ├── preload.js │ │ │ │ ├── tex-svg.js │ │ │ │ └── webpack.config.js │ │ │ └── ui │ │ │ │ ├── menu │ │ │ │ ├── build.json │ │ │ │ ├── menu.js │ │ │ │ └── webpack.config.js │ │ │ │ └── safe │ │ │ │ ├── build.json │ │ │ │ ├── safe.js │ │ │ │ └── webpack.config.js │ │ └── webpack.common.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── ts │ │ ├── a11y │ │ │ ├── assistive-mml.ts │ │ │ ├── complexity.ts │ │ │ ├── complexity │ │ │ │ ├── collapse.ts │ │ │ │ └── visitor.ts │ │ │ ├── explorer.ts │ │ │ ├── explorer │ │ │ │ ├── Explorer.ts │ │ │ │ ├── KeyExplorer.ts │ │ │ │ ├── MouseExplorer.ts │ │ │ │ ├── Region.ts │ │ │ │ └── TreeExplorer.ts │ │ │ ├── semantic-enrich.ts │ │ │ ├── speech-rule-engine.d.ts │ │ │ ├── sre-node.ts │ │ │ ├── sre.ts │ │ │ └── sre_browser.d.ts │ │ ├── adaptors │ │ │ ├── HTMLAdaptor.ts │ │ │ ├── browserAdaptor.ts │ │ │ ├── chooseAdaptor.ts │ │ │ ├── jsdomAdaptor.ts │ │ │ ├── lite │ │ │ │ ├── Document.ts │ │ │ │ ├── Element.ts │ │ │ │ ├── List.ts │ │ │ │ ├── Parser.ts │ │ │ │ ├── Text.ts │ │ │ │ └── Window.ts │ │ │ └── liteAdaptor.ts │ │ ├── components │ │ │ ├── global.ts │ │ │ ├── latest.ts │ │ │ ├── loader.ts │ │ │ ├── package.ts │ │ │ └── startup.ts │ │ ├── core │ │ │ ├── DOMAdaptor.ts │ │ │ ├── FindMath.ts │ │ │ ├── Handler.ts │ │ │ ├── HandlerList.ts │ │ │ ├── InputJax.ts │ │ │ ├── MathDocument.ts │ │ │ ├── MathItem.ts │ │ │ ├── MathList.ts │ │ │ ├── MmlTree │ │ │ │ ├── Attributes.ts │ │ │ │ ├── JsonMmlVisitor.ts │ │ │ │ ├── LegacyMmlVisitor.ts │ │ │ │ ├── MML.ts │ │ │ │ ├── MathMLVisitor.ts │ │ │ │ ├── MmlFactory.ts │ │ │ │ ├── MmlNode.ts │ │ │ │ ├── MmlNodes │ │ │ │ │ ├── TeXAtom.ts │ │ │ │ │ ├── maction.ts │ │ │ │ │ ├── maligngroup.ts │ │ │ │ │ ├── malignmark.ts │ │ │ │ │ ├── math.ts │ │ │ │ │ ├── mathchoice.ts │ │ │ │ │ ├── menclose.ts │ │ │ │ │ ├── merror.ts │ │ │ │ │ ├── mfenced.ts │ │ │ │ │ ├── mfrac.ts │ │ │ │ │ ├── mglyph.ts │ │ │ │ │ ├── mi.ts │ │ │ │ │ ├── mmultiscripts.ts │ │ │ │ │ ├── mn.ts │ │ │ │ │ ├── mo.ts │ │ │ │ │ ├── mpadded.ts │ │ │ │ │ ├── mphantom.ts │ │ │ │ │ ├── mroot.ts │ │ │ │ │ ├── mrow.ts │ │ │ │ │ ├── ms.ts │ │ │ │ │ ├── mspace.ts │ │ │ │ │ ├── msqrt.ts │ │ │ │ │ ├── mstyle.ts │ │ │ │ │ ├── msubsup.ts │ │ │ │ │ ├── mtable.ts │ │ │ │ │ ├── mtd.ts │ │ │ │ │ ├── mtext.ts │ │ │ │ │ ├── mtr.ts │ │ │ │ │ ├── munderover.ts │ │ │ │ │ └── semantics.ts │ │ │ │ ├── MmlVisitor.ts │ │ │ │ ├── OperatorDictionary.ts │ │ │ │ ├── SerializedMmlVisitor.ts │ │ │ │ └── TestMmlVisitor.ts │ │ │ ├── OutputJax.ts │ │ │ └── Tree │ │ │ │ ├── Factory.ts │ │ │ │ ├── Node.ts │ │ │ │ ├── NodeFactory.ts │ │ │ │ ├── Visitor.ts │ │ │ │ ├── Wrapper.ts │ │ │ │ └── WrapperFactory.ts │ │ ├── handlers │ │ │ ├── html.ts │ │ │ └── html │ │ │ │ ├── HTMLDocument.ts │ │ │ │ ├── HTMLDomStrings.ts │ │ │ │ ├── HTMLHandler.ts │ │ │ │ ├── HTMLMathItem.ts │ │ │ │ └── HTMLMathList.ts │ │ ├── input │ │ │ ├── asciimath.ts │ │ │ ├── asciimath │ │ │ │ ├── FindAsciiMath.ts │ │ │ │ └── mathjax2 │ │ │ │ │ ├── input │ │ │ │ │ ├── AsciiMath.d.ts │ │ │ │ │ └── AsciiMath.js │ │ │ │ │ └── legacy │ │ │ │ │ ├── MathJax.js │ │ │ │ │ └── jax │ │ │ │ │ ├── element │ │ │ │ │ ├── JSON.js │ │ │ │ │ ├── MmlNode.js │ │ │ │ │ └── mml │ │ │ │ │ │ ├── jax.js │ │ │ │ │ │ └── optable │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ └── SupplementalArrowsB.js │ │ │ │ │ └── input │ │ │ │ │ └── AsciiMath │ │ │ │ │ ├── config.js │ │ │ │ │ └── jax.js │ │ │ ├── mathml.ts │ │ │ ├── mathml │ │ │ │ ├── FindMathML.ts │ │ │ │ └── MathMLCompile.ts │ │ │ ├── tex.ts │ │ │ └── tex │ │ │ │ ├── AllPackages.ts │ │ │ │ ├── Configuration.ts │ │ │ │ ├── FilterUtil.ts │ │ │ │ ├── FindTeX.ts │ │ │ │ ├── MapHandler.ts │ │ │ │ ├── NodeFactory.ts │ │ │ │ ├── NodeUtil.ts │ │ │ │ ├── ParseMethods.ts │ │ │ │ ├── ParseOptions.ts │ │ │ │ ├── ParseUtil.ts │ │ │ │ ├── Stack.ts │ │ │ │ ├── StackItem.ts │ │ │ │ ├── StackItemFactory.ts │ │ │ │ ├── Symbol.ts │ │ │ │ ├── SymbolMap.ts │ │ │ │ ├── Tags.ts │ │ │ │ ├── TexConstants.ts │ │ │ │ ├── TexError.ts │ │ │ │ ├── TexParser.ts │ │ │ │ ├── Types.ts │ │ │ │ ├── action │ │ │ │ └── ActionConfiguration.ts │ │ │ │ ├── ams │ │ │ │ ├── AmsConfiguration.ts │ │ │ │ ├── AmsItems.ts │ │ │ │ ├── AmsMappings.ts │ │ │ │ └── AmsMethods.ts │ │ │ │ ├── amscd │ │ │ │ ├── AmsCdConfiguration.ts │ │ │ │ ├── AmsCdMappings.ts │ │ │ │ └── AmsCdMethods.ts │ │ │ │ ├── autoload │ │ │ │ └── AutoloadConfiguration.ts │ │ │ │ ├── base │ │ │ │ ├── BaseConfiguration.ts │ │ │ │ ├── BaseItems.ts │ │ │ │ ├── BaseMappings.ts │ │ │ │ └── BaseMethods.ts │ │ │ │ ├── bbox │ │ │ │ └── BboxConfiguration.ts │ │ │ │ ├── boldsymbol │ │ │ │ └── BoldsymbolConfiguration.ts │ │ │ │ ├── braket │ │ │ │ ├── BraketConfiguration.ts │ │ │ │ ├── BraketItems.ts │ │ │ │ ├── BraketMappings.ts │ │ │ │ └── BraketMethods.ts │ │ │ │ ├── bussproofs │ │ │ │ ├── BussproofsConfiguration.ts │ │ │ │ ├── BussproofsItems.ts │ │ │ │ ├── BussproofsMappings.ts │ │ │ │ ├── BussproofsMethods.ts │ │ │ │ └── BussproofsUtil.ts │ │ │ │ ├── cancel │ │ │ │ └── CancelConfiguration.ts │ │ │ │ ├── color │ │ │ │ ├── ColorConfiguration.ts │ │ │ │ ├── ColorConstants.ts │ │ │ │ ├── ColorMethods.ts │ │ │ │ └── ColorUtil.ts │ │ │ │ ├── colorv2 │ │ │ │ └── ColorV2Configuration.ts │ │ │ │ ├── configmacros │ │ │ │ └── ConfigMacrosConfiguration.ts │ │ │ │ ├── enclose │ │ │ │ └── EncloseConfiguration.ts │ │ │ │ ├── extpfeil │ │ │ │ └── ExtpfeilConfiguration.ts │ │ │ │ ├── html │ │ │ │ ├── HtmlConfiguration.ts │ │ │ │ └── HtmlMethods.ts │ │ │ │ ├── mhchem │ │ │ │ ├── MhchemConfiguration.ts │ │ │ │ ├── mhchem_parser.d.ts │ │ │ │ └── mhchem_parser.js │ │ │ │ ├── newcommand │ │ │ │ ├── NewcommandConfiguration.ts │ │ │ │ ├── NewcommandItems.ts │ │ │ │ ├── NewcommandMappings.ts │ │ │ │ ├── NewcommandMethods.ts │ │ │ │ └── NewcommandUtil.ts │ │ │ │ ├── noerrors │ │ │ │ └── NoErrorsConfiguration.ts │ │ │ │ ├── noundefined │ │ │ │ └── NoUndefinedConfiguration.ts │ │ │ │ ├── physics │ │ │ │ ├── PhysicsConfiguration.ts │ │ │ │ ├── PhysicsItems.ts │ │ │ │ ├── PhysicsMappings.ts │ │ │ │ └── PhysicsMethods.ts │ │ │ │ ├── require │ │ │ │ └── RequireConfiguration.ts │ │ │ │ ├── tagformat │ │ │ │ └── TagFormatConfiguration.ts │ │ │ │ ├── textmacros │ │ │ │ ├── TextMacrosConfiguration.ts │ │ │ │ ├── TextMacrosMappings.ts │ │ │ │ ├── TextMacrosMethods.ts │ │ │ │ └── TextParser.ts │ │ │ │ ├── unicode │ │ │ │ └── UnicodeConfiguration.ts │ │ │ │ └── verb │ │ │ │ └── VerbConfiguration.ts │ │ ├── mathjax.ts │ │ ├── output │ │ │ ├── chtml.ts │ │ │ ├── chtml │ │ │ │ ├── BBox.ts │ │ │ │ ├── FontData.ts │ │ │ │ ├── Notation.ts │ │ │ │ ├── Wrapper.ts │ │ │ │ ├── WrapperFactory.ts │ │ │ │ ├── Wrappers.ts │ │ │ │ ├── Wrappers │ │ │ │ │ ├── TeXAtom.ts │ │ │ │ │ ├── TextNode.ts │ │ │ │ │ ├── maction.ts │ │ │ │ │ ├── math.ts │ │ │ │ │ ├── menclose.ts │ │ │ │ │ ├── mfenced.ts │ │ │ │ │ ├── mfrac.ts │ │ │ │ │ ├── mglyph.ts │ │ │ │ │ ├── mi.ts │ │ │ │ │ ├── mmultiscripts.ts │ │ │ │ │ ├── mn.ts │ │ │ │ │ ├── mo.ts │ │ │ │ │ ├── mpadded.ts │ │ │ │ │ ├── mroot.ts │ │ │ │ │ ├── mrow.ts │ │ │ │ │ ├── ms.ts │ │ │ │ │ ├── mspace.ts │ │ │ │ │ ├── msqrt.ts │ │ │ │ │ ├── msubsup.ts │ │ │ │ │ ├── mtable.ts │ │ │ │ │ ├── mtd.ts │ │ │ │ │ ├── mtext.ts │ │ │ │ │ ├── mtr.ts │ │ │ │ │ ├── munderover.ts │ │ │ │ │ ├── scriptbase.ts │ │ │ │ │ └── semantics.ts │ │ │ │ └── fonts │ │ │ │ │ ├── tex-woff-v2 │ │ │ │ │ ├── MathJax_AMS-Regular.woff │ │ │ │ │ ├── MathJax_Calligraphic-Bold.woff │ │ │ │ │ ├── MathJax_Calligraphic-Regular.woff │ │ │ │ │ ├── MathJax_Fraktur-Bold.woff │ │ │ │ │ ├── MathJax_Fraktur-Regular.woff │ │ │ │ │ ├── MathJax_Main-Bold.woff │ │ │ │ │ ├── MathJax_Main-Italic.woff │ │ │ │ │ ├── MathJax_Main-Regular.woff │ │ │ │ │ ├── MathJax_Math-BoldItalic.woff │ │ │ │ │ ├── MathJax_Math-Italic.woff │ │ │ │ │ ├── MathJax_Math-Regular.woff │ │ │ │ │ ├── MathJax_SansSerif-Bold.woff │ │ │ │ │ ├── MathJax_SansSerif-Italic.woff │ │ │ │ │ ├── MathJax_SansSerif-Regular.woff │ │ │ │ │ ├── MathJax_Script-Regular.woff │ │ │ │ │ ├── MathJax_Size1-Regular.woff │ │ │ │ │ ├── MathJax_Size2-Regular.woff │ │ │ │ │ ├── MathJax_Size3-Regular.woff │ │ │ │ │ ├── MathJax_Size4-Regular.woff │ │ │ │ │ ├── MathJax_Typewriter-Regular.woff │ │ │ │ │ ├── MathJax_Vector-Bold.woff │ │ │ │ │ ├── MathJax_Vector-Regular.woff │ │ │ │ │ └── MathJax_Zero.woff │ │ │ │ │ ├── tex.ts │ │ │ │ │ └── tex │ │ │ │ │ ├── bold-italic.ts │ │ │ │ │ ├── bold.ts │ │ │ │ │ ├── double-struck.ts │ │ │ │ │ ├── fraktur-bold.ts │ │ │ │ │ ├── fraktur.ts │ │ │ │ │ ├── italic.ts │ │ │ │ │ ├── largeop.ts │ │ │ │ │ ├── monospace.ts │ │ │ │ │ ├── normal.ts │ │ │ │ │ ├── sans-serif-bold-italic.ts │ │ │ │ │ ├── sans-serif-bold.ts │ │ │ │ │ ├── sans-serif-italic.ts │ │ │ │ │ ├── sans-serif.ts │ │ │ │ │ ├── script-bold.ts │ │ │ │ │ ├── script.ts │ │ │ │ │ ├── smallop.ts │ │ │ │ │ ├── tex-calligraphic-bold.ts │ │ │ │ │ ├── tex-calligraphic.ts │ │ │ │ │ ├── tex-mathit.ts │ │ │ │ │ ├── tex-oldstyle-bold.ts │ │ │ │ │ ├── tex-oldstyle.ts │ │ │ │ │ ├── tex-size3.ts │ │ │ │ │ ├── tex-size4.ts │ │ │ │ │ └── tex-variant.ts │ │ │ ├── common │ │ │ │ ├── BBox.ts │ │ │ │ ├── CssStyles.ts │ │ │ │ ├── FontData.ts │ │ │ │ ├── Notation.ts │ │ │ │ ├── OutputJax.ts │ │ │ │ ├── Wrapper.ts │ │ │ │ ├── WrapperFactory.ts │ │ │ │ ├── Wrappers │ │ │ │ │ ├── TeXAtom.ts │ │ │ │ │ ├── TextNode.ts │ │ │ │ │ ├── maction.ts │ │ │ │ │ ├── math.ts │ │ │ │ │ ├── menclose.ts │ │ │ │ │ ├── mfenced.ts │ │ │ │ │ ├── mfrac.ts │ │ │ │ │ ├── mglyph.ts │ │ │ │ │ ├── mi.ts │ │ │ │ │ ├── mmultiscripts.ts │ │ │ │ │ ├── mn.ts │ │ │ │ │ ├── mo.ts │ │ │ │ │ ├── mpadded.ts │ │ │ │ │ ├── mroot.ts │ │ │ │ │ ├── mrow.ts │ │ │ │ │ ├── ms.ts │ │ │ │ │ ├── mspace.ts │ │ │ │ │ ├── msqrt.ts │ │ │ │ │ ├── msubsup.ts │ │ │ │ │ ├── mtable.ts │ │ │ │ │ ├── mtd.ts │ │ │ │ │ ├── mtext.ts │ │ │ │ │ ├── mtr.ts │ │ │ │ │ ├── munderover.ts │ │ │ │ │ ├── scriptbase.ts │ │ │ │ │ └── semantics.ts │ │ │ │ └── fonts │ │ │ │ │ ├── tex.ts │ │ │ │ │ └── tex │ │ │ │ │ ├── bold-italic.ts │ │ │ │ │ ├── bold.ts │ │ │ │ │ ├── delimiters.ts │ │ │ │ │ ├── double-struck.ts │ │ │ │ │ ├── fraktur-bold.ts │ │ │ │ │ ├── fraktur.ts │ │ │ │ │ ├── italic.ts │ │ │ │ │ ├── largeop.ts │ │ │ │ │ ├── monospace.ts │ │ │ │ │ ├── normal.ts │ │ │ │ │ ├── sans-serif-bold-italic.ts │ │ │ │ │ ├── sans-serif-bold.ts │ │ │ │ │ ├── sans-serif-italic.ts │ │ │ │ │ ├── sans-serif.ts │ │ │ │ │ ├── script-bold.ts │ │ │ │ │ ├── script.ts │ │ │ │ │ ├── smallop.ts │ │ │ │ │ ├── tex-calligraphic-bold.ts │ │ │ │ │ ├── tex-calligraphic.ts │ │ │ │ │ ├── tex-mathit.ts │ │ │ │ │ ├── tex-oldstyle-bold.ts │ │ │ │ │ ├── tex-oldstyle.ts │ │ │ │ │ ├── tex-size3.ts │ │ │ │ │ ├── tex-size4.ts │ │ │ │ │ └── tex-variant.ts │ │ │ ├── svg.ts │ │ │ └── svg │ │ │ │ ├── BBox.ts │ │ │ │ ├── FontCache.ts │ │ │ │ ├── FontData.ts │ │ │ │ ├── Notation.ts │ │ │ │ ├── Wrapper.ts │ │ │ │ ├── WrapperFactory.ts │ │ │ │ ├── Wrappers.ts │ │ │ │ ├── Wrappers │ │ │ │ ├── TeXAtom.ts │ │ │ │ ├── TextNode.ts │ │ │ │ ├── maction.ts │ │ │ │ ├── math.ts │ │ │ │ ├── menclose.ts │ │ │ │ ├── merror.ts │ │ │ │ ├── mfenced.ts │ │ │ │ ├── mfrac.ts │ │ │ │ ├── mglyph.ts │ │ │ │ ├── mi.ts │ │ │ │ ├── mmultiscripts.ts │ │ │ │ ├── mn.ts │ │ │ │ ├── mo.ts │ │ │ │ ├── mpadded.ts │ │ │ │ ├── mphantom.ts │ │ │ │ ├── mroot.ts │ │ │ │ ├── mrow.ts │ │ │ │ ├── ms.ts │ │ │ │ ├── mspace.ts │ │ │ │ ├── msqrt.ts │ │ │ │ ├── msubsup.ts │ │ │ │ ├── mtable.ts │ │ │ │ ├── mtd.ts │ │ │ │ ├── mtext.ts │ │ │ │ ├── mtr.ts │ │ │ │ ├── munderover.ts │ │ │ │ ├── scriptbase.ts │ │ │ │ └── semantics.ts │ │ │ │ └── fonts │ │ │ │ ├── tex.ts │ │ │ │ └── tex │ │ │ │ ├── bold-italic.ts │ │ │ │ ├── bold.ts │ │ │ │ ├── double-struck.ts │ │ │ │ ├── fraktur-bold.ts │ │ │ │ ├── fraktur.ts │ │ │ │ ├── italic.ts │ │ │ │ ├── largeop.ts │ │ │ │ ├── monospace.ts │ │ │ │ ├── normal.ts │ │ │ │ ├── sans-serif-bold-italic.ts │ │ │ │ ├── sans-serif-bold.ts │ │ │ │ ├── sans-serif-italic.ts │ │ │ │ ├── sans-serif.ts │ │ │ │ ├── script-bold.ts │ │ │ │ ├── script.ts │ │ │ │ ├── smallop.ts │ │ │ │ ├── tex-calligraphic-bold.ts │ │ │ │ ├── tex-calligraphic.ts │ │ │ │ ├── tex-mathit.ts │ │ │ │ ├── tex-oldstyle-bold.ts │ │ │ │ ├── tex-oldstyle.ts │ │ │ │ ├── tex-size3.ts │ │ │ │ ├── tex-size4.ts │ │ │ │ └── tex-variant.ts │ │ ├── ui │ │ │ ├── menu │ │ │ │ ├── MJContextMenu.ts │ │ │ │ ├── Menu.ts │ │ │ │ ├── MenuHandler.ts │ │ │ │ ├── MmlVisitor.ts │ │ │ │ └── SelectableInfo.ts │ │ │ └── safe │ │ │ │ ├── SafeHandler.ts │ │ │ │ ├── SafeMethods.ts │ │ │ │ └── safe.ts │ │ └── util │ │ │ ├── AsyncLoad.ts │ │ │ ├── BBox.ts │ │ │ ├── BitField.ts │ │ │ ├── Entities.ts │ │ │ ├── FunctionList.ts │ │ │ ├── LinkedList.ts │ │ │ ├── Options.ts │ │ │ ├── PrioritizedList.ts │ │ │ ├── Retries.ts │ │ │ ├── StyleList.ts │ │ │ ├── Styles.ts │ │ │ ├── asyncLoad │ │ │ ├── node.ts │ │ │ ├── path.d.ts │ │ │ └── system.ts │ │ │ ├── entities │ │ │ ├── a.ts │ │ │ ├── all.ts │ │ │ ├── b.ts │ │ │ ├── c.ts │ │ │ ├── d.ts │ │ │ ├── e.ts │ │ │ ├── f.ts │ │ │ ├── fr.ts │ │ │ ├── g.ts │ │ │ ├── h.ts │ │ │ ├── i.ts │ │ │ ├── j.ts │ │ │ ├── k.ts │ │ │ ├── l.ts │ │ │ ├── m.ts │ │ │ ├── n.ts │ │ │ ├── o.ts │ │ │ ├── opf.ts │ │ │ ├── p.ts │ │ │ ├── q.ts │ │ │ ├── r.ts │ │ │ ├── s.ts │ │ │ ├── scr.ts │ │ │ ├── t.ts │ │ │ ├── u.ts │ │ │ ├── v.ts │ │ │ ├── w.ts │ │ │ ├── x.ts │ │ │ ├── y.ts │ │ │ └── z.ts │ │ │ ├── lengths.ts │ │ │ ├── numeric.ts │ │ │ └── string.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── QtAwesome │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── QtAwesome.cpp │ ├── QtAwesome.h │ ├── QtAwesome.pri │ ├── QtAwesome.pro │ ├── QtAwesomeAnim.cpp │ ├── QtAwesomeAnim.h │ ├── QtAwesomeFree.qrc │ ├── QtAwesomePro.qrc │ ├── README.md │ └── fonts │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ ├── Font Awesome 5 Free-Regular-400.otf │ │ └── Font Awesome 5 Free-Solid-900.otf ├── cmark-gfm │ ├── COPYING │ ├── cmark-gfm.pri │ ├── extensions │ │ ├── autolink.c │ │ ├── autolink.h │ │ ├── cmark-gfm-core-extensions.h │ │ ├── cmark-gfm-extensions_export.h │ │ ├── core-extensions.c │ │ ├── ext_scanners.c │ │ ├── ext_scanners.h │ │ ├── strikethrough.c │ │ ├── strikethrough.h │ │ ├── table.c │ │ ├── table.h │ │ ├── tagfilter.c │ │ ├── tagfilter.h │ │ ├── tasklist.c │ │ └── tasklist.h │ └── src │ │ ├── arena.c │ │ ├── blocks.c │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── case_fold_switch.inc │ │ ├── chunk.h │ │ ├── cmark-gfm-extension_api.h │ │ ├── cmark-gfm.h │ │ ├── cmark-gfm_export.h │ │ ├── cmark-gfm_version.h │ │ ├── cmark.c │ │ ├── cmark_ctype.c │ │ ├── cmark_ctype.h │ │ ├── commonmark.c │ │ ├── config.h │ │ ├── entities.inc │ │ ├── footnotes.c │ │ ├── footnotes.h │ │ ├── houdini.h │ │ ├── houdini_href_e.c │ │ ├── houdini_html_e.c │ │ ├── houdini_html_u.c │ │ ├── html.c │ │ ├── html.h │ │ ├── inlines.c │ │ ├── inlines.h │ │ ├── iterator.c │ │ ├── iterator.h │ │ ├── latex.c │ │ ├── linked_list.c │ │ ├── main.c │ │ ├── man.c │ │ ├── map.c │ │ ├── map.h │ │ ├── node.c │ │ ├── node.h │ │ ├── parser.h │ │ ├── plaintext.c │ │ ├── plugin.c │ │ ├── plugin.h │ │ ├── references.c │ │ ├── references.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── render.c │ │ ├── render.h │ │ ├── scanners.c │ │ ├── scanners.h │ │ ├── syntax_extension.c │ │ ├── syntax_extension.h │ │ ├── utf8.c │ │ ├── utf8.h │ │ └── xml.c ├── hunspell │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING.LGPL │ ├── COPYING.MPL │ ├── README │ ├── affentry.cxx │ ├── affentry.hxx │ ├── affixmgr.cxx │ ├── affixmgr.hxx │ ├── atypes.hxx │ ├── baseaffix.hxx │ ├── config.h │ ├── csutil.cxx │ ├── csutil.hxx │ ├── dictmgr.cxx │ ├── dictmgr.hxx │ ├── filemgr.cxx │ ├── filemgr.hxx │ ├── hashmgr.cxx │ ├── hashmgr.hxx │ ├── htypes.hxx │ ├── hunspell.cxx │ ├── hunspell.dsp │ ├── hunspell.h │ ├── hunspell.hxx │ ├── hunspell.pri │ ├── hunvisapi.h │ ├── hunvisapi.h.in │ ├── hunzip.cxx │ ├── hunzip.hxx │ ├── langnum.hxx │ ├── license.hunspell │ ├── license.myspell │ ├── makefile.mk │ ├── phonet.cxx │ ├── phonet.hxx │ ├── replist.cxx │ ├── replist.hxx │ ├── suggestmgr.cxx │ ├── suggestmgr.hxx │ ├── utf_info.cxx │ ├── versioninfo.txt │ └── w_char.hxx └── react │ ├── LICENSE │ ├── html-react-parser.js │ ├── react-dom.development.js │ ├── react-dom.production.min.js │ ├── react.development.js │ └── react.production.min.js ├── BUILD_MAC.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYING ├── CREDITS.md ├── C_Make_WIP.txt ├── README.md ├── appveyor.yml ├── debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── menu ├── rules ├── source │ ├── format │ └── lintian-overrides └── watch ├── ghostwriter.pro ├── ghostwriter.sln ├── ghostwriter.spec ├── ghostwriter.vcxproj ├── ghostwriter.vcxproj.filters ├── resources.qrc ├── resources ├── COPYING ├── images │ ├── COPYING │ └── ghostwriter.svg ├── linux │ ├── ghostwriter.1 │ ├── ghostwriter.appdata.xml │ ├── ghostwriter.desktop │ └── icons │ │ └── hicolor │ │ ├── 128x128 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 16x16 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 22x22 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 24x24 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 256x256 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── ghostwriter.png │ │ ├── 64x64 │ │ └── apps │ │ │ └── ghostwriter.png │ │ └── scalable │ │ └── apps │ │ └── ghostwriter.svg ├── mac │ ├── Info.plist │ ├── ghostwriter.icns │ └── macdeploy_helper.sh ├── preview.css ├── preview.html └── windows │ ├── ghostwriter.ico │ └── ghostwriter.rc ├── src ├── abstractstatisticswidget.cpp ├── abstractstatisticswidget.h ├── appmain.cpp ├── appsettings.cpp ├── appsettings.h ├── cmarkgfmapi.cpp ├── cmarkgfmapi.h ├── cmarkgfmexporter.cpp ├── cmarkgfmexporter.h ├── color_button.cpp ├── color_button.h ├── colorscheme.h ├── colorschemepreviewer.cpp ├── colorschemepreviewer.h ├── commandlineexporter.cpp ├── commandlineexporter.h ├── documenthistory.cpp ├── documenthistory.h ├── documentmanager.cpp ├── documentmanager.h ├── documentstatistics.cpp ├── documentstatistics.h ├── documentstatisticswidget.cpp ├── documentstatisticswidget.h ├── exportdialog.cpp ├── exportdialog.h ├── exporter.cpp ├── exporter.h ├── exporterfactory.cpp ├── exporterfactory.h ├── exportformat.cpp ├── exportformat.h ├── findreplace.cpp ├── findreplace.h ├── htmlpreview.cpp ├── htmlpreview.h ├── localedialog.cpp ├── localedialog.h ├── mainwindow.cpp ├── mainwindow.h ├── markdownast.cpp ├── markdownast.h ├── markdowndocument.cpp ├── markdowndocument.h ├── markdowneditor.cpp ├── markdowneditor.h ├── markdowneditortypes.h ├── markdownhighlighter.cpp ├── markdownhighlighter.h ├── markdownnode.cpp ├── markdownnode.h ├── markdownstates.h ├── memoryarena.cpp ├── memoryarena.h ├── messageboxhelper.cpp ├── messageboxhelper.h ├── outlinewidget.cpp ├── outlinewidget.h ├── preferencesdialog.cpp ├── preferencesdialog.h ├── previewoptionsdialog.cpp ├── previewoptionsdialog.h ├── sandboxedwebpage.cpp ├── sandboxedwebpage.h ├── sessionstatistics.cpp ├── sessionstatistics.h ├── sessionstatisticswidget.cpp ├── sessionstatisticswidget.h ├── sidebar.cpp ├── sidebar.h ├── simplefontdialog.cpp ├── simplefontdialog.h ├── spell_checker.cpp ├── spell_checker.h ├── spelling │ ├── abstract_dictionary.h │ ├── abstract_dictionary_provider.h │ ├── dictionary_manager.cpp │ ├── dictionary_manager.h │ ├── dictionary_provider_hunspell.cpp │ ├── dictionary_provider_hunspell.h │ ├── dictionary_provider_nsspellchecker.h │ ├── dictionary_provider_nsspellchecker.mm │ ├── dictionary_provider_voikko.cpp │ ├── dictionary_provider_voikko.h │ ├── dictionary_ref.h │ ├── spell_checker.cpp │ └── spell_checker.h ├── statisticsindicator.cpp ├── statisticsindicator.h ├── stringobserver.cpp ├── stringobserver.h ├── stylesheetbuilder.cpp ├── stylesheetbuilder.h ├── textblockdata.cpp ├── textblockdata.h ├── theme.cpp ├── theme.h ├── themeeditordialog.cpp ├── themeeditordialog.h ├── themerepository.cpp ├── themerepository.h ├── themeselectiondialog.cpp ├── themeselectiondialog.h ├── timelabel.cpp └── timelabel.h └── translations ├── CMakeLists.txt ├── ghostwriter_ar.ts ├── ghostwriter_ca.ts ├── ghostwriter_cs.ts ├── ghostwriter_de.ts ├── ghostwriter_en.ts ├── ghostwriter_es.ts ├── ghostwriter_fr.ts ├── ghostwriter_it.ts ├── ghostwriter_ja.ts ├── ghostwriter_nb_NO.ts ├── ghostwriter_nl.ts ├── ghostwriter_pl.ts ├── ghostwriter_pt_BR.ts ├── ghostwriter_ru.ts ├── ghostwriter_sv.ts └── ghostwriter_zh.ts /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/copr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.github/workflows/copr.yml -------------------------------------------------------------------------------- /.github/workflows/launchpad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.github/workflows/launchpad.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.release-it.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/LICENSE -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/a11y/assistive-mml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/a11y/assistive-mml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/a11y/complexity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/a11y/complexity.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/a11y/explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/a11y/explorer.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/a11y/semantic-enrich.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/a11y/semantic-enrich.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/adaptors/liteDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/adaptors/liteDOM.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/core.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/asciimath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/asciimath.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/mml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/mml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/mml/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/mml/entities.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex-base.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex-full.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/action.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/all-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/all-packages.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/ams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/ams.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/amscd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/amscd.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/autoload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/autoload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/bbox.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/boldsymbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/boldsymbol.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/braket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/braket.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/bussproofs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/bussproofs.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/cancel.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/color.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/colorv2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/colorv2.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/configmacros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/configmacros.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/enclose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/enclose.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/extpfeil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/extpfeil.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/html.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/mhchem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/mhchem.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/newcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/newcommand.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/noerrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/noerrors.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/noundefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/noundefined.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/physics.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/require.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/tagformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/tagformat.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/textmacros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/textmacros.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/unicode.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/input/tex/extensions/verb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/input/tex/extensions/verb.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/latest.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/loader.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/mml-chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/mml-chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/mml-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/mml-svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/node-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/node-main.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/output/chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/output/chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/output/chtml/fonts/tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/output/chtml/fonts/tex.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/output/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/output/svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/output/svg/fonts/tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/output/svg/fonts/tex.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/de.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/en.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/es.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/fr.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/mathmaps_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/mathmaps_ie.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/mathmaps/nemeth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/mathmaps/nemeth.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/sre-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/sre-node.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/sre/sre_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/sre/sre_browser.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/startup.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-chtml-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-chtml-full.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-mml-chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-mml-chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-mml-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-mml-svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-svg-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-svg-full.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/tex-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/tex-svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/ui/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/ui/menu.js -------------------------------------------------------------------------------- /3rdparty/MathJax/bin/ui/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/bin/ui/safe.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/MathJax/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/LICENSE -------------------------------------------------------------------------------- /3rdparty/MathJax/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/README.md -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/bin/build -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/bin/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/bin/copy -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/bin/makeAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/bin/makeAll -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/bin/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/bin/pack -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/a11y/explorer/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/a11y/explorer/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/core/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/core/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/core/core.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/core/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/core/webpack.config.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/dependencies.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/mml/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/input/mml/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/mml/mml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/input/mml/mml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/input/tex/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/action/action.js: -------------------------------------------------------------------------------- 1 | import './lib/action.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/ams/ams.js: -------------------------------------------------------------------------------- 1 | import './lib/ams.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/autoload/autoload.js: -------------------------------------------------------------------------------- 1 | import './lib/autoload.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/bbox/bbox.js: -------------------------------------------------------------------------------- 1 | import './lib/bbox.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/boldsymbol/boldsymbol.js: -------------------------------------------------------------------------------- 1 | import './lib/boldsymbol.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/braket/braket.js: -------------------------------------------------------------------------------- 1 | import './lib/braket.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/bussproofs/bussproofs.js: -------------------------------------------------------------------------------- 1 | import './lib/bussproofs.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/cancel/cancel.js: -------------------------------------------------------------------------------- 1 | import './lib/cancel.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/color/color.js: -------------------------------------------------------------------------------- 1 | import './lib/color.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/enclose/enclose.js: -------------------------------------------------------------------------------- 1 | import './lib/enclose.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/extpfeil/extpfeil.js: -------------------------------------------------------------------------------- 1 | import './lib/extpfeil.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/html/html.js: -------------------------------------------------------------------------------- 1 | import './lib/html.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/mhchem/mhchem.js: -------------------------------------------------------------------------------- 1 | import './lib/mhchem.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/newcommand/newcommand.js: -------------------------------------------------------------------------------- 1 | import './lib/newcommand.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/noerrors/noerrors.js: -------------------------------------------------------------------------------- 1 | import './lib/noerrors.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/noundefined/noundefined.js: -------------------------------------------------------------------------------- 1 | import './lib/noundefined.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/physics/physics.js: -------------------------------------------------------------------------------- 1 | import './lib/physics.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/require/require.js: -------------------------------------------------------------------------------- 1 | import './lib/require.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/textmacros/textmacros.js: -------------------------------------------------------------------------------- 1 | import './lib/textmacros.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/unicode/unicode.js: -------------------------------------------------------------------------------- 1 | import './lib/unicode.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/extensions/verb/verb.js: -------------------------------------------------------------------------------- 1 | import './lib/verb.js'; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/input/tex/register.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/input/tex/tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/input/tex/tex.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/latest/latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/latest/latest.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/latest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/latest/webpack.config.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/loader/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/loader/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/loader/loader.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/loader/webpack.config.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/mml-chtml/mml-chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/mml-chtml/mml-chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/mml-chtml/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/mml-chtml/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/mml-svg/mml-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/mml-svg/mml-svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/mml-svg/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/mml-svg/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/node-main/copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/node-main/copy.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/node-main/node-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/node-main/node-main.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/chtml/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/chtml/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/chtml/chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/chtml/chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/chtml/nofont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/chtml/nofont.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/svg/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/svg/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/svg/nofont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/svg/nofont.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/output/svg/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/output/svg/svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/source.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/sre/copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/sre/copy.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/startup/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/startup/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/startup/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/startup/startup.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-chtml/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-chtml/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-chtml/tex-chtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-chtml/tex-chtml.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-mml-chtml/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-mml-chtml/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-mml-svg/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-mml-svg/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-svg-full/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-svg-full/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-svg/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-svg/preload.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/tex-svg/tex-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/tex-svg/tex-svg.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/ui/menu/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/ui/menu/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/ui/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/ui/menu/menu.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/ui/safe/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/ui/safe/build.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/src/ui/safe/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/src/ui/safe/safe.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/components/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/components/webpack.common.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/package-lock.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/package.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/assistive-mml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/assistive-mml.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/complexity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/complexity.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/complexity/collapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/complexity/collapse.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/complexity/visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/complexity/visitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer/Explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer/Explorer.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer/KeyExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer/KeyExplorer.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer/MouseExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer/MouseExplorer.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer/Region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer/Region.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/explorer/TreeExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/explorer/TreeExplorer.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/semantic-enrich.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/semantic-enrich.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/speech-rule-engine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/speech-rule-engine.d.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/sre-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/sre-node.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/sre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/sre.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/a11y/sre_browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/a11y/sre_browser.d.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/HTMLAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/HTMLAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/browserAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/browserAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/chooseAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/chooseAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/jsdomAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/jsdomAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/Document.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/Element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/Element.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/List.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/List.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/Parser.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/Text.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/lite/Window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/lite/Window.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/adaptors/liteAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/adaptors/liteAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/components/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/components/global.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/components/latest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/components/latest.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/components/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/components/loader.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/components/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/components/package.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/components/startup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/components/startup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/DOMAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/DOMAdaptor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/FindMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/FindMath.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Handler.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/HandlerList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/HandlerList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/InputJax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/InputJax.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MathDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MathDocument.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MathItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MathItem.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MathList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MathList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/Attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/Attributes.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/JsonMmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/JsonMmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/LegacyMmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/LegacyMmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MML.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MathMLVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MathMLVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNode.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/TeXAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/TeXAtom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/maction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/maction.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/maligngroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/maligngroup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/malignmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/malignmark.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/math.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mathchoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mathchoice.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/menclose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/menclose.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/merror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/merror.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mfenced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mfenced.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mfrac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mfrac.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mglyph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mglyph.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mi.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mn.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mo.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mpadded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mpadded.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mphantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mphantom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mroot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mroot.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mrow.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/ms.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mspace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/msqrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/msqrt.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mstyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mstyle.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/msubsup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/msubsup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtable.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtd.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtext.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/mtr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/munderover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/munderover.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/semantics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlNodes/semantics.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/MmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/MmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/OperatorDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/OperatorDictionary.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/SerializedMmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/SerializedMmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/MmlTree/TestMmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/MmlTree/TestMmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/OutputJax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/OutputJax.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/Factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/Factory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/Node.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/NodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/NodeFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/Visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/Visitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/Wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/Wrapper.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/core/Tree/WrapperFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/core/Tree/WrapperFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html/HTMLDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html/HTMLDocument.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html/HTMLDomStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html/HTMLDomStrings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html/HTMLHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html/HTMLHandler.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html/HTMLMathItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html/HTMLMathItem.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/handlers/html/HTMLMathList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/handlers/html/HTMLMathList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/asciimath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/asciimath.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/asciimath/FindAsciiMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/asciimath/FindAsciiMath.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/asciimath/mathjax2/input/AsciiMath.d.ts: -------------------------------------------------------------------------------- 1 | export var LegacyAsciiMath: any; 2 | -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/mathml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/mathml.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/mathml/FindMathML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/mathml/FindMathML.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/mathml/MathMLCompile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/mathml/MathMLCompile.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/AllPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/AllPackages.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/Configuration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/FilterUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/FilterUtil.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/FindTeX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/FindTeX.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/MapHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/MapHandler.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/NodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/NodeFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/NodeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/NodeUtil.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ParseMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ParseMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ParseOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ParseOptions.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ParseUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ParseUtil.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/Stack.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/StackItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/StackItem.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/StackItemFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/StackItemFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/Symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/Symbol.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/SymbolMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/SymbolMap.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/Tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/Tags.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/TexConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/TexConstants.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/TexError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/TexError.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/TexParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/TexParser.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/Types.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ams/AmsConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ams/AmsConfiguration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ams/AmsItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ams/AmsItems.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ams/AmsMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ams/AmsMappings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/ams/AmsMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/ams/AmsMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/amscd/AmsCdMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/amscd/AmsCdMappings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/amscd/AmsCdMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/amscd/AmsCdMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/base/BaseConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/base/BaseConfiguration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/base/BaseItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/base/BaseItems.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/base/BaseMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/base/BaseMappings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/base/BaseMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/base/BaseMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/bbox/BboxConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/bbox/BboxConfiguration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/braket/BraketItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/braket/BraketItems.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/braket/BraketMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/braket/BraketMappings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/braket/BraketMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/braket/BraketMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/color/ColorConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/color/ColorConstants.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/color/ColorMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/color/ColorMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/color/ColorUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/color/ColorUtil.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/html/HtmlConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/html/HtmlConfiguration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/html/HtmlMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/html/HtmlMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/mhchem/mhchem_parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/mhchem/mhchem_parser.d.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/mhchem/mhchem_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/mhchem/mhchem_parser.js -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/physics/PhysicsItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/physics/PhysicsItems.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/physics/PhysicsMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/physics/PhysicsMappings.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/physics/PhysicsMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/physics/PhysicsMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/textmacros/TextParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/textmacros/TextParser.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/input/tex/verb/VerbConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/input/tex/verb/VerbConfiguration.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/mathjax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/mathjax.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/BBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/BBox.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/FontData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/FontData.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Notation.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrapper.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/WrapperFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/WrapperFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/TeXAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/TeXAtom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/TextNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/TextNode.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/maction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/maction.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/math.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/menclose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/menclose.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mfenced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mfenced.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mfrac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mfrac.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mglyph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mglyph.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mi.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mn.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mo.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mpadded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mpadded.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mroot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mroot.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mrow.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/ms.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mspace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/msqrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/msqrt.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/msubsup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/msubsup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtable.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtd.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtext.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/mtr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/munderover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/munderover.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/scriptbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/scriptbase.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/Wrappers/semantics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/Wrappers/semantics.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/bold.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/fraktur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/fraktur.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/italic.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/largeop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/largeop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/monospace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/monospace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/normal.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/sans-serif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/sans-serif.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/script.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/smallop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/smallop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-mathit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-mathit.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-size3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-size3.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-size4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/chtml/fonts/tex/tex-size4.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/BBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/BBox.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/CssStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/CssStyles.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/FontData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/FontData.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Notation.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/OutputJax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/OutputJax.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrapper.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/WrapperFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/WrapperFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/TeXAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/TeXAtom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/TextNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/TextNode.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/maction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/maction.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/math.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/menclose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/menclose.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mfenced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mfenced.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mfrac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mfrac.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mglyph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mglyph.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mi.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mn.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mo.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mpadded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mpadded.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mroot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mroot.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mrow.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/ms.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mspace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/msqrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/msqrt.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/msubsup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/msubsup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mtable.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mtd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mtd.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mtext.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/mtr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/mtr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/munderover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/munderover.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/scriptbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/scriptbase.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/Wrappers/semantics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/Wrappers/semantics.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/bold.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/fraktur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/fraktur.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/italic.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/largeop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/largeop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/monospace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/monospace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/normal.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/script.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/smallop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/smallop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/tex-size3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/tex-size3.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/common/fonts/tex/tex-size4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/common/fonts/tex/tex-size4.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/BBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/BBox.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/FontCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/FontCache.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/FontData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/FontData.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Notation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Notation.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrapper.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/WrapperFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/WrapperFactory.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/TeXAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/TeXAtom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/TextNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/TextNode.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/maction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/maction.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/math.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/menclose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/menclose.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/merror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/merror.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mfenced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mfenced.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mfrac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mfrac.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mglyph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mglyph.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mi.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mmultiscripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mmultiscripts.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mn.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mo.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mpadded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mpadded.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mphantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mphantom.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mroot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mroot.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mrow.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/ms.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mspace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/msqrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/msqrt.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/msubsup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/msubsup.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mtable.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mtd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mtd.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mtext.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/mtr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/mtr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/munderover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/munderover.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/scriptbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/scriptbase.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/Wrappers/semantics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/Wrappers/semantics.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/bold-italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/bold-italic.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/bold.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/fraktur-bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/fraktur-bold.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/fraktur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/fraktur.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/italic.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/largeop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/largeop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/monospace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/monospace.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/normal.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/sans-serif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/sans-serif.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/script-bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/script-bold.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/script.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/smallop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/smallop.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-mathit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-mathit.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-oldstyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-oldstyle.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-size3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-size3.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-size4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-size4.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-variant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/output/svg/fonts/tex/tex-variant.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/menu/MJContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/menu/MJContextMenu.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/menu/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/menu/Menu.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/menu/MenuHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/menu/MenuHandler.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/menu/MmlVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/menu/MmlVisitor.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/menu/SelectableInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/menu/SelectableInfo.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/safe/SafeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/safe/SafeHandler.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/safe/SafeMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/safe/SafeMethods.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/ui/safe/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/ui/safe/safe.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/AsyncLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/AsyncLoad.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/BBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/BBox.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/BitField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/BitField.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/Entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/Entities.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/FunctionList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/FunctionList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/LinkedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/LinkedList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/Options.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/PrioritizedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/PrioritizedList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/Retries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/Retries.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/StyleList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/StyleList.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/Styles.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/asyncLoad/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/asyncLoad/node.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/asyncLoad/path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/asyncLoad/path.d.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/asyncLoad/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/asyncLoad/system.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/a.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/all.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/b.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/c.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/d.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/e.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/f.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/f.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/fr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/g.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/g.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/h.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/i.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/i.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/j.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/j.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/k.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/k.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/l.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/l.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/m.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/m.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/n.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/o.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/o.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/opf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/opf.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/p.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/p.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/q.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/q.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/r.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/r.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/s.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/scr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/scr.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/t.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/u.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/u.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/v.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/v.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/w.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/w.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/x.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/y.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/y.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/entities/z.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/entities/z.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/lengths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/lengths.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/numeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/numeric.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/ts/util/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/ts/util/string.ts -------------------------------------------------------------------------------- /3rdparty/MathJax/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/tsconfig.json -------------------------------------------------------------------------------- /3rdparty/MathJax/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/MathJax/src/tslint.json -------------------------------------------------------------------------------- /3rdparty/QtAwesome/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/QtAwesome/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesome.cpp -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesome.h -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesome.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesome.pri -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesome.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesome.pro -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesomeAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesomeAnim.cpp -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesomeAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesomeAnim.h -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesomeFree.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesomeFree.qrc -------------------------------------------------------------------------------- /3rdparty/QtAwesome/QtAwesomePro.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/QtAwesomePro.qrc -------------------------------------------------------------------------------- /3rdparty/QtAwesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/README.md -------------------------------------------------------------------------------- /3rdparty/QtAwesome/fonts/Font Awesome 5 Free-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/fonts/Font Awesome 5 Free-Regular-400.otf -------------------------------------------------------------------------------- /3rdparty/QtAwesome/fonts/Font Awesome 5 Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/QtAwesome/fonts/Font Awesome 5 Free-Solid-900.otf -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/COPYING -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/cmark-gfm.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/cmark-gfm.pri -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/autolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/autolink.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/autolink.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/cmark-gfm-core-extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/cmark-gfm-core-extensions.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/core-extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/core-extensions.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/ext_scanners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/ext_scanners.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/ext_scanners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/ext_scanners.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/strikethrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/strikethrough.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/strikethrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/strikethrough.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/table.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/table.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/tagfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/tagfilter.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/tagfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/tagfilter.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/tasklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/tasklist.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/extensions/tasklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/extensions/tasklist.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/arena.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/blocks.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/buffer.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/buffer.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/case_fold_switch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/case_fold_switch.inc -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/chunk.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark-gfm-extension_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark-gfm-extension_api.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark-gfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark-gfm.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark-gfm_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark-gfm_export.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark-gfm_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark-gfm_version.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark_ctype.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/cmark_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/cmark_ctype.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/commonmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/commonmark.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/config.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/entities.inc -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/footnotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/footnotes.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/footnotes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/footnotes.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/houdini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/houdini.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/houdini_href_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/houdini_href_e.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/houdini_html_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/houdini_html_e.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/houdini_html_u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/houdini_html_u.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/html.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/html.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/inlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/inlines.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/inlines.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/iterator.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/iterator.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/latex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/latex.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/linked_list.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/main.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/man.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/map.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/map.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/node.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/node.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/parser.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/plaintext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/plaintext.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/plugin.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/plugin.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/references.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/references.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/registry.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/registry.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/render.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/render.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/scanners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/scanners.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/scanners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/scanners.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/syntax_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/syntax_extension.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/syntax_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/syntax_extension.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/utf8.c -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/utf8.h -------------------------------------------------------------------------------- /3rdparty/cmark-gfm/src/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/cmark-gfm/src/xml.c -------------------------------------------------------------------------------- /3rdparty/hunspell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/hunspell/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/COPYING -------------------------------------------------------------------------------- /3rdparty/hunspell/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/COPYING.LGPL -------------------------------------------------------------------------------- /3rdparty/hunspell/COPYING.MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/COPYING.MPL -------------------------------------------------------------------------------- /3rdparty/hunspell/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/README -------------------------------------------------------------------------------- /3rdparty/hunspell/affentry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/affentry.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/affentry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/affentry.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/affixmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/affixmgr.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/affixmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/affixmgr.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/atypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/atypes.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/baseaffix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/baseaffix.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/config.h -------------------------------------------------------------------------------- /3rdparty/hunspell/csutil.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/csutil.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/csutil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/csutil.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/dictmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/dictmgr.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/dictmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/dictmgr.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/filemgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/filemgr.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/filemgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/filemgr.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hashmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hashmgr.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hashmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hashmgr.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/htypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/htypes.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hunspell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunspell.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hunspell.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunspell.dsp -------------------------------------------------------------------------------- /3rdparty/hunspell/hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunspell.h -------------------------------------------------------------------------------- /3rdparty/hunspell/hunspell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunspell.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hunspell.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunspell.pri -------------------------------------------------------------------------------- /3rdparty/hunspell/hunvisapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunvisapi.h -------------------------------------------------------------------------------- /3rdparty/hunspell/hunvisapi.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunvisapi.h.in -------------------------------------------------------------------------------- /3rdparty/hunspell/hunzip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunzip.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/hunzip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/hunzip.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/langnum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/langnum.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/license.hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/license.hunspell -------------------------------------------------------------------------------- /3rdparty/hunspell/license.myspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/license.myspell -------------------------------------------------------------------------------- /3rdparty/hunspell/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/makefile.mk -------------------------------------------------------------------------------- /3rdparty/hunspell/phonet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/phonet.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/phonet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/phonet.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/replist.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/replist.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/replist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/replist.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/suggestmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/suggestmgr.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/suggestmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/suggestmgr.hxx -------------------------------------------------------------------------------- /3rdparty/hunspell/utf_info.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/utf_info.cxx -------------------------------------------------------------------------------- /3rdparty/hunspell/versioninfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/versioninfo.txt -------------------------------------------------------------------------------- /3rdparty/hunspell/w_char.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/hunspell/w_char.hxx -------------------------------------------------------------------------------- /3rdparty/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/LICENSE -------------------------------------------------------------------------------- /3rdparty/react/html-react-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/html-react-parser.js -------------------------------------------------------------------------------- /3rdparty/react/react-dom.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/react-dom.development.js -------------------------------------------------------------------------------- /3rdparty/react/react-dom.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/react-dom.production.min.js -------------------------------------------------------------------------------- /3rdparty/react/react.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/react.development.js -------------------------------------------------------------------------------- /3rdparty/react/react.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/3rdparty/react/react.production.min.js -------------------------------------------------------------------------------- /BUILD_MAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/BUILD_MAC.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/CREDITS.md -------------------------------------------------------------------------------- /C_Make_WIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/C_Make_WIP.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/share/applications 3 | -------------------------------------------------------------------------------- /debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/menu -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/debian/watch -------------------------------------------------------------------------------- /ghostwriter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/ghostwriter.pro -------------------------------------------------------------------------------- /ghostwriter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/ghostwriter.sln -------------------------------------------------------------------------------- /ghostwriter.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/ghostwriter.spec -------------------------------------------------------------------------------- /ghostwriter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/ghostwriter.vcxproj -------------------------------------------------------------------------------- /ghostwriter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/ghostwriter.vcxproj.filters -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/COPYING -------------------------------------------------------------------------------- /resources/images/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/images/COPYING -------------------------------------------------------------------------------- /resources/images/ghostwriter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/images/ghostwriter.svg -------------------------------------------------------------------------------- /resources/linux/ghostwriter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/ghostwriter.1 -------------------------------------------------------------------------------- /resources/linux/ghostwriter.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/ghostwriter.appdata.xml -------------------------------------------------------------------------------- /resources/linux/ghostwriter.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/ghostwriter.desktop -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/16x16/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/16x16/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/22x22/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/22x22/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/24x24/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/24x24/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/32x32/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/32x32/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/48x48/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/48x48/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/linux/icons/hicolor/64x64/apps/ghostwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/linux/icons/hicolor/64x64/apps/ghostwriter.png -------------------------------------------------------------------------------- /resources/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/mac/Info.plist -------------------------------------------------------------------------------- /resources/mac/ghostwriter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/mac/ghostwriter.icns -------------------------------------------------------------------------------- /resources/mac/macdeploy_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/mac/macdeploy_helper.sh -------------------------------------------------------------------------------- /resources/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/preview.css -------------------------------------------------------------------------------- /resources/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/preview.html -------------------------------------------------------------------------------- /resources/windows/ghostwriter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/windows/ghostwriter.ico -------------------------------------------------------------------------------- /resources/windows/ghostwriter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/resources/windows/ghostwriter.rc -------------------------------------------------------------------------------- /src/abstractstatisticswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/abstractstatisticswidget.cpp -------------------------------------------------------------------------------- /src/abstractstatisticswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/abstractstatisticswidget.h -------------------------------------------------------------------------------- /src/appmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/appmain.cpp -------------------------------------------------------------------------------- /src/appsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/appsettings.cpp -------------------------------------------------------------------------------- /src/appsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/appsettings.h -------------------------------------------------------------------------------- /src/cmarkgfmapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/cmarkgfmapi.cpp -------------------------------------------------------------------------------- /src/cmarkgfmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/cmarkgfmapi.h -------------------------------------------------------------------------------- /src/cmarkgfmexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/cmarkgfmexporter.cpp -------------------------------------------------------------------------------- /src/cmarkgfmexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/cmarkgfmexporter.h -------------------------------------------------------------------------------- /src/color_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/color_button.cpp -------------------------------------------------------------------------------- /src/color_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/color_button.h -------------------------------------------------------------------------------- /src/colorscheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/colorscheme.h -------------------------------------------------------------------------------- /src/colorschemepreviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/colorschemepreviewer.cpp -------------------------------------------------------------------------------- /src/colorschemepreviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/colorschemepreviewer.h -------------------------------------------------------------------------------- /src/commandlineexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/commandlineexporter.cpp -------------------------------------------------------------------------------- /src/commandlineexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/commandlineexporter.h -------------------------------------------------------------------------------- /src/documenthistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documenthistory.cpp -------------------------------------------------------------------------------- /src/documenthistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documenthistory.h -------------------------------------------------------------------------------- /src/documentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentmanager.cpp -------------------------------------------------------------------------------- /src/documentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentmanager.h -------------------------------------------------------------------------------- /src/documentstatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentstatistics.cpp -------------------------------------------------------------------------------- /src/documentstatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentstatistics.h -------------------------------------------------------------------------------- /src/documentstatisticswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentstatisticswidget.cpp -------------------------------------------------------------------------------- /src/documentstatisticswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/documentstatisticswidget.h -------------------------------------------------------------------------------- /src/exportdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exportdialog.cpp -------------------------------------------------------------------------------- /src/exportdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exportdialog.h -------------------------------------------------------------------------------- /src/exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exporter.cpp -------------------------------------------------------------------------------- /src/exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exporter.h -------------------------------------------------------------------------------- /src/exporterfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exporterfactory.cpp -------------------------------------------------------------------------------- /src/exporterfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exporterfactory.h -------------------------------------------------------------------------------- /src/exportformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exportformat.cpp -------------------------------------------------------------------------------- /src/exportformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/exportformat.h -------------------------------------------------------------------------------- /src/findreplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/findreplace.cpp -------------------------------------------------------------------------------- /src/findreplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/findreplace.h -------------------------------------------------------------------------------- /src/htmlpreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/htmlpreview.cpp -------------------------------------------------------------------------------- /src/htmlpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/htmlpreview.h -------------------------------------------------------------------------------- /src/localedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/localedialog.cpp -------------------------------------------------------------------------------- /src/localedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/localedialog.h -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/markdownast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownast.cpp -------------------------------------------------------------------------------- /src/markdownast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownast.h -------------------------------------------------------------------------------- /src/markdowndocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdowndocument.cpp -------------------------------------------------------------------------------- /src/markdowndocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdowndocument.h -------------------------------------------------------------------------------- /src/markdowneditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdowneditor.cpp -------------------------------------------------------------------------------- /src/markdowneditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdowneditor.h -------------------------------------------------------------------------------- /src/markdowneditortypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdowneditortypes.h -------------------------------------------------------------------------------- /src/markdownhighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownhighlighter.cpp -------------------------------------------------------------------------------- /src/markdownhighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownhighlighter.h -------------------------------------------------------------------------------- /src/markdownnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownnode.cpp -------------------------------------------------------------------------------- /src/markdownnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownnode.h -------------------------------------------------------------------------------- /src/markdownstates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/markdownstates.h -------------------------------------------------------------------------------- /src/memoryarena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/memoryarena.cpp -------------------------------------------------------------------------------- /src/memoryarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/memoryarena.h -------------------------------------------------------------------------------- /src/messageboxhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/messageboxhelper.cpp -------------------------------------------------------------------------------- /src/messageboxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/messageboxhelper.h -------------------------------------------------------------------------------- /src/outlinewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/outlinewidget.cpp -------------------------------------------------------------------------------- /src/outlinewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/outlinewidget.h -------------------------------------------------------------------------------- /src/preferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/preferencesdialog.cpp -------------------------------------------------------------------------------- /src/preferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/preferencesdialog.h -------------------------------------------------------------------------------- /src/previewoptionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/previewoptionsdialog.cpp -------------------------------------------------------------------------------- /src/previewoptionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/previewoptionsdialog.h -------------------------------------------------------------------------------- /src/sandboxedwebpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sandboxedwebpage.cpp -------------------------------------------------------------------------------- /src/sandboxedwebpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sandboxedwebpage.h -------------------------------------------------------------------------------- /src/sessionstatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sessionstatistics.cpp -------------------------------------------------------------------------------- /src/sessionstatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sessionstatistics.h -------------------------------------------------------------------------------- /src/sessionstatisticswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sessionstatisticswidget.cpp -------------------------------------------------------------------------------- /src/sessionstatisticswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sessionstatisticswidget.h -------------------------------------------------------------------------------- /src/sidebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sidebar.cpp -------------------------------------------------------------------------------- /src/sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/sidebar.h -------------------------------------------------------------------------------- /src/simplefontdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/simplefontdialog.cpp -------------------------------------------------------------------------------- /src/simplefontdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/simplefontdialog.h -------------------------------------------------------------------------------- /src/spell_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spell_checker.cpp -------------------------------------------------------------------------------- /src/spell_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spell_checker.h -------------------------------------------------------------------------------- /src/spelling/abstract_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/abstract_dictionary.h -------------------------------------------------------------------------------- /src/spelling/abstract_dictionary_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/abstract_dictionary_provider.h -------------------------------------------------------------------------------- /src/spelling/dictionary_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_manager.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_manager.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_hunspell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_hunspell.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_hunspell.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_nsspellchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_nsspellchecker.h -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_nsspellchecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_nsspellchecker.mm -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_voikko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_voikko.cpp -------------------------------------------------------------------------------- /src/spelling/dictionary_provider_voikko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_provider_voikko.h -------------------------------------------------------------------------------- /src/spelling/dictionary_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/dictionary_ref.h -------------------------------------------------------------------------------- /src/spelling/spell_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/spell_checker.cpp -------------------------------------------------------------------------------- /src/spelling/spell_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/spelling/spell_checker.h -------------------------------------------------------------------------------- /src/statisticsindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/statisticsindicator.cpp -------------------------------------------------------------------------------- /src/statisticsindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/statisticsindicator.h -------------------------------------------------------------------------------- /src/stringobserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/stringobserver.cpp -------------------------------------------------------------------------------- /src/stringobserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/stringobserver.h -------------------------------------------------------------------------------- /src/stylesheetbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/stylesheetbuilder.cpp -------------------------------------------------------------------------------- /src/stylesheetbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/stylesheetbuilder.h -------------------------------------------------------------------------------- /src/textblockdata.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textblockdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/textblockdata.h -------------------------------------------------------------------------------- /src/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/theme.cpp -------------------------------------------------------------------------------- /src/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/theme.h -------------------------------------------------------------------------------- /src/themeeditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themeeditordialog.cpp -------------------------------------------------------------------------------- /src/themeeditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themeeditordialog.h -------------------------------------------------------------------------------- /src/themerepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themerepository.cpp -------------------------------------------------------------------------------- /src/themerepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themerepository.h -------------------------------------------------------------------------------- /src/themeselectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themeselectiondialog.cpp -------------------------------------------------------------------------------- /src/themeselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/themeselectiondialog.h -------------------------------------------------------------------------------- /src/timelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/timelabel.cpp -------------------------------------------------------------------------------- /src/timelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/src/timelabel.h -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/CMakeLists.txt -------------------------------------------------------------------------------- /translations/ghostwriter_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_ar.ts -------------------------------------------------------------------------------- /translations/ghostwriter_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_ca.ts -------------------------------------------------------------------------------- /translations/ghostwriter_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_cs.ts -------------------------------------------------------------------------------- /translations/ghostwriter_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_de.ts -------------------------------------------------------------------------------- /translations/ghostwriter_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_en.ts -------------------------------------------------------------------------------- /translations/ghostwriter_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_es.ts -------------------------------------------------------------------------------- /translations/ghostwriter_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_fr.ts -------------------------------------------------------------------------------- /translations/ghostwriter_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_it.ts -------------------------------------------------------------------------------- /translations/ghostwriter_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_ja.ts -------------------------------------------------------------------------------- /translations/ghostwriter_nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_nb_NO.ts -------------------------------------------------------------------------------- /translations/ghostwriter_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_nl.ts -------------------------------------------------------------------------------- /translations/ghostwriter_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_pl.ts -------------------------------------------------------------------------------- /translations/ghostwriter_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_pt_BR.ts -------------------------------------------------------------------------------- /translations/ghostwriter_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_ru.ts -------------------------------------------------------------------------------- /translations/ghostwriter_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_sv.ts -------------------------------------------------------------------------------- /translations/ghostwriter_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelolvera/vs-ghostwriter/HEAD/translations/ghostwriter_zh.ts --------------------------------------------------------------------------------