├── .discourse-compatibility ├── .github └── workflows │ └── discourse-plugin.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.cjs ├── .rubocop.yml ├── .streerc ├── .template-lintrc.cjs ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── assets ├── javascripts │ ├── initializers │ │ ├── discourse-math-katex.js │ │ └── discourse-math-mathjax.js │ └── lib │ │ └── discourse-markdown │ │ └── discourse-math.js └── stylesheets │ ├── common │ └── discourse-math.scss │ └── ext │ └── discourse-chat.scss ├── config ├── locales │ ├── server.ar.yml │ ├── server.be.yml │ ├── server.bg.yml │ ├── server.bs_BA.yml │ ├── server.ca.yml │ ├── server.cs.yml │ ├── server.da.yml │ ├── server.de.yml │ ├── server.el.yml │ ├── server.en.yml │ ├── server.en_GB.yml │ ├── server.es.yml │ ├── server.et.yml │ ├── server.fa_IR.yml │ ├── server.fi.yml │ ├── server.fr.yml │ ├── server.gl.yml │ ├── server.he.yml │ ├── server.hr.yml │ ├── server.hu.yml │ ├── server.hy.yml │ ├── server.id.yml │ ├── server.it.yml │ ├── server.ja.yml │ ├── server.ko.yml │ ├── server.lt.yml │ ├── server.lv.yml │ ├── server.nb_NO.yml │ ├── server.nl.yml │ ├── server.pl_PL.yml │ ├── server.pt.yml │ ├── server.pt_BR.yml │ ├── server.ro.yml │ ├── server.ru.yml │ ├── server.sk.yml │ ├── server.sl.yml │ ├── server.sq.yml │ ├── server.sr.yml │ ├── server.sv.yml │ ├── server.sw.yml │ ├── server.te.yml │ ├── server.th.yml │ ├── server.tr_TR.yml │ ├── server.ug.yml │ ├── server.uk.yml │ ├── server.ur.yml │ ├── server.vi.yml │ ├── server.zh_CN.yml │ └── server.zh_TW.yml └── settings.yml ├── eslint.config.mjs ├── lib └── math_renderer.rb ├── package.json ├── plugin.rb ├── pnpm-lock.yaml ├── public ├── katex │ ├── README.md │ ├── copy-tex.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.min.css │ ├── katex.min.js │ └── mhchem.min.js └── mathjax │ ├── MathJax.2.7.5.js │ ├── extensions │ ├── AssistiveMML.js │ ├── CHTML-preview.js │ ├── FontWarnings.js │ ├── HTML-CSS │ │ └── handle-floats.js │ ├── HelpDialog.js │ ├── MatchWebFonts.js │ ├── MathEvents.js │ ├── MathML │ │ ├── content-mathml.js │ │ └── mml3.js │ ├── MathMenu.js │ ├── MathZoom.js │ ├── Safe.js │ ├── TeX │ │ ├── AMScd.js │ │ ├── AMSmath.js │ │ ├── AMSsymbols.js │ │ ├── HTML.js │ │ ├── action.js │ │ ├── autobold.js │ │ ├── autoload-all.js │ │ ├── bbox.js │ │ ├── begingroup.js │ │ ├── boldsymbol.js │ │ ├── cancel.js │ │ ├── color.js │ │ ├── enclose.js │ │ ├── extpfeil.js │ │ ├── mathchoice.js │ │ ├── mediawiki-texvc.js │ │ ├── mhchem.js │ │ ├── mhchem3 │ │ │ └── mhchem.js │ │ ├── newcommand.js │ │ ├── noErrors.js │ │ ├── noUndefined.js │ │ ├── unicode.js │ │ └── verb.js │ ├── a11y │ │ ├── accessibility-menu.js │ │ ├── auto-collapse.js │ │ ├── collapsible.js │ │ ├── explorer.js │ │ ├── invalid_keypress.mp3 │ │ ├── invalid_keypress.ogg │ │ ├── mathjax-sre.js │ │ ├── mathmaps │ │ │ ├── en │ │ │ │ ├── functions │ │ │ │ │ ├── algebra.js │ │ │ │ │ ├── elementary.js │ │ │ │ │ ├── hyperbolic.js │ │ │ │ │ └── trigonometry.js │ │ │ │ ├── symbols │ │ │ │ │ ├── greek-capital.js │ │ │ │ │ ├── greek-mathfonts-bold.js │ │ │ │ │ ├── greek-mathfonts-italic.js │ │ │ │ │ ├── greek-mathfonts-sans-serif-bold.js │ │ │ │ │ ├── greek-scripts.js │ │ │ │ │ ├── greek-small.js │ │ │ │ │ ├── greek-symbols.js │ │ │ │ │ ├── hebrew_letters.js │ │ │ │ │ ├── latin-lower-double-accent.js │ │ │ │ │ ├── latin-lower-normal.js │ │ │ │ │ ├── latin-lower-phonetic.js │ │ │ │ │ ├── latin-lower-single-accent.js │ │ │ │ │ ├── latin-mathfonts-bold-fraktur.js │ │ │ │ │ ├── latin-mathfonts-bold-script.js │ │ │ │ │ ├── latin-mathfonts-bold.js │ │ │ │ │ ├── latin-mathfonts-double-struck.js │ │ │ │ │ ├── latin-mathfonts-fraktur.js │ │ │ │ │ ├── latin-mathfonts-italic.js │ │ │ │ │ ├── latin-mathfonts-monospace.js │ │ │ │ │ ├── latin-mathfonts-sans-serif-bold.js │ │ │ │ │ ├── latin-mathfonts-sans-serif-italic.js │ │ │ │ │ ├── latin-mathfonts-sans-serif.js │ │ │ │ │ ├── latin-mathfonts-script.js │ │ │ │ │ ├── latin-rest.js │ │ │ │ │ ├── latin-upper-double-accent.js │ │ │ │ │ ├── latin-upper-normal.js │ │ │ │ │ ├── latin-upper-single-accent.js │ │ │ │ │ ├── math_angles.js │ │ │ │ │ ├── math_arrows.js │ │ │ │ │ ├── math_characters.js │ │ │ │ │ ├── math_delimiters.js │ │ │ │ │ ├── math_digits.js │ │ │ │ │ ├── math_geometry.js │ │ │ │ │ ├── math_harpoons.js │ │ │ │ │ ├── math_non_characters.js │ │ │ │ │ ├── math_symbols.js │ │ │ │ │ ├── math_whitespace.js │ │ │ │ │ └── other_stars.js │ │ │ │ └── units │ │ │ │ │ ├── energy.js │ │ │ │ │ ├── length.js │ │ │ │ │ ├── memory.js │ │ │ │ │ ├── other.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── temperature.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── volume.js │ │ │ │ │ └── weight.js │ │ │ ├── es │ │ │ │ ├── functions │ │ │ │ │ ├── algebra.js │ │ │ │ │ ├── elementary.js │ │ │ │ │ ├── hyperbolic.js │ │ │ │ │ └── trigonometry.js │ │ │ │ ├── symbols │ │ │ │ │ ├── greek-capital.js │ │ │ │ │ ├── greek-mathfonts-bold.js │ │ │ │ │ ├── greek-mathfonts-italic.js │ │ │ │ │ ├── greek-mathfonts-sans-serif-bold.js │ │ │ │ │ ├── greek-scripts.js │ │ │ │ │ ├── greek-small.js │ │ │ │ │ ├── greek-symbols.js │ │ │ │ │ ├── hebrew_letters.js │ │ │ │ │ ├── latin-lower-double-accent.js │ │ │ │ │ ├── latin-lower-normal.js │ │ │ │ │ ├── latin-lower-phonetic.js │ │ │ │ │ ├── latin-lower-single-accent.js │ │ │ │ │ ├── latin-mathfonts-bold-fraktur.js │ │ │ │ │ ├── latin-mathfonts-bold-script.js │ │ │ │ │ ├── latin-mathfonts-bold.js │ │ │ │ │ ├── latin-mathfonts-double-struck.js │ │ │ │ │ ├── latin-mathfonts-fraktur.js │ │ │ │ │ ├── latin-mathfonts-italic.js │ │ │ │ │ ├── latin-mathfonts-monospace.js │ │ │ │ │ ├── latin-mathfonts-sans-serif-bold.js │ │ │ │ │ ├── latin-mathfonts-sans-serif-italic.js │ │ │ │ │ ├── latin-mathfonts-sans-serif.js │ │ │ │ │ ├── latin-mathfonts-script.js │ │ │ │ │ ├── latin-rest.js │ │ │ │ │ ├── latin-upper-double-accent.js │ │ │ │ │ ├── latin-upper-normal.js │ │ │ │ │ ├── latin-upper-single-accent.js │ │ │ │ │ ├── math_angles.js │ │ │ │ │ ├── math_arrows.js │ │ │ │ │ ├── math_characters.js │ │ │ │ │ ├── math_delimiters.js │ │ │ │ │ ├── math_digits.js │ │ │ │ │ ├── math_geometry.js │ │ │ │ │ ├── math_harpoons.js │ │ │ │ │ ├── math_non_characters.js │ │ │ │ │ ├── math_symbols.js │ │ │ │ │ ├── math_whitespace.js │ │ │ │ │ └── other_stars.js │ │ │ │ └── units │ │ │ │ │ ├── energy.js │ │ │ │ │ ├── length.js │ │ │ │ │ ├── memory.js │ │ │ │ │ ├── other.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── temperature.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── volume.js │ │ │ │ │ └── weight.js │ │ │ └── mathmaps_ie.js │ │ ├── semantic-enrich.js │ │ └── wgxpath.install.js │ ├── asciimath2jax.js │ ├── fast-preview.js │ ├── jsMath2jax.js │ ├── mml2jax.js │ ├── tex2jax.js │ └── toMathML.js │ ├── fonts │ └── HTML-CSS │ │ └── TeX │ │ ├── eot │ │ ├── MathJax_AMS-Regular.eot │ │ ├── MathJax_Caligraphic-Bold.eot │ │ ├── MathJax_Caligraphic-Regular.eot │ │ ├── MathJax_Fraktur-Bold.eot │ │ ├── MathJax_Fraktur-Regular.eot │ │ ├── MathJax_Main-Bold.eot │ │ ├── MathJax_Main-Italic.eot │ │ ├── MathJax_Main-Regular.eot │ │ ├── MathJax_Math-BoldItalic.eot │ │ ├── MathJax_Math-Italic.eot │ │ ├── MathJax_Math-Regular.eot │ │ ├── MathJax_SansSerif-Bold.eot │ │ ├── MathJax_SansSerif-Italic.eot │ │ ├── MathJax_SansSerif-Regular.eot │ │ ├── MathJax_Script-Regular.eot │ │ ├── MathJax_Size1-Regular.eot │ │ ├── MathJax_Size2-Regular.eot │ │ ├── MathJax_Size3-Regular.eot │ │ ├── MathJax_Size4-Regular.eot │ │ ├── MathJax_Typewriter-Regular.eot │ │ ├── MathJax_Vector-Bold.eot │ │ ├── MathJax_Vector-Regular.eot │ │ └── MathJax_WinIE6-Regular.eot │ │ ├── otf │ │ ├── MathJax_AMS-Regular.otf │ │ ├── MathJax_Caligraphic-Bold.otf │ │ ├── MathJax_Caligraphic-Regular.otf │ │ ├── MathJax_Fraktur-Bold.otf │ │ ├── MathJax_Fraktur-Regular.otf │ │ ├── MathJax_Main-Bold.otf │ │ ├── MathJax_Main-Italic.otf │ │ ├── MathJax_Main-Regular.otf │ │ ├── MathJax_Math-BoldItalic.otf │ │ ├── MathJax_Math-Italic.otf │ │ ├── MathJax_Math-Regular.otf │ │ ├── MathJax_SansSerif-Bold.otf │ │ ├── MathJax_SansSerif-Italic.otf │ │ ├── MathJax_SansSerif-Regular.otf │ │ ├── MathJax_Script-Regular.otf │ │ ├── MathJax_Size1-Regular.otf │ │ ├── MathJax_Size2-Regular.otf │ │ ├── MathJax_Size3-Regular.otf │ │ ├── MathJax_Size4-Regular.otf │ │ ├── MathJax_Typewriter-Regular.otf │ │ ├── MathJax_Vector-Bold.otf │ │ ├── MathJax_Vector-Regular.otf │ │ ├── MathJax_WinChrome-Regular.otf │ │ └── MathJax_WinIE6-Regular.otf │ │ ├── svg │ │ ├── MathJax_AMS-Regular.svg │ │ ├── MathJax_Caligraphic-Bold.svg │ │ ├── MathJax_Caligraphic-Regular.svg │ │ ├── MathJax_Fraktur-Bold.svg │ │ ├── MathJax_Fraktur-Regular.svg │ │ ├── MathJax_Main-Bold.svg │ │ ├── MathJax_Main-Italic.svg │ │ ├── MathJax_Main-Regular.svg │ │ ├── MathJax_Math-BoldItalic.svg │ │ ├── MathJax_Math-Italic.svg │ │ ├── MathJax_Math-Regular.svg │ │ ├── MathJax_SansSerif-Bold.svg │ │ ├── MathJax_SansSerif-Italic.svg │ │ ├── MathJax_SansSerif-Regular.svg │ │ ├── MathJax_Script-Regular.svg │ │ ├── MathJax_Size1-Regular.svg │ │ ├── MathJax_Size2-Regular.svg │ │ ├── MathJax_Size3-Regular.svg │ │ ├── MathJax_Size4-Regular.svg │ │ ├── MathJax_Typewriter-Regular.svg │ │ └── MathJax_WinChrome-Regular.svg │ │ └── woff │ │ ├── MathJax_AMS-Regular.woff │ │ ├── MathJax_Caligraphic-Bold.woff │ │ ├── MathJax_Caligraphic-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 │ └── jax │ ├── element │ └── 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 │ │ ├── config.js │ │ ├── entities │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ ├── c.js │ │ │ ├── d.js │ │ │ ├── e.js │ │ │ ├── f.js │ │ │ ├── fr.js │ │ │ ├── g.js │ │ │ ├── h.js │ │ │ ├── i.js │ │ │ ├── j.js │ │ │ ├── k.js │ │ │ ├── l.js │ │ │ ├── m.js │ │ │ ├── n.js │ │ │ ├── o.js │ │ │ ├── opf.js │ │ │ ├── p.js │ │ │ ├── q.js │ │ │ ├── r.js │ │ │ ├── s.js │ │ │ ├── scr.js │ │ │ ├── t.js │ │ │ ├── u.js │ │ │ ├── v.js │ │ │ ├── w.js │ │ │ ├── x.js │ │ │ ├── y.js │ │ │ └── z.js │ │ └── jax.js │ └── TeX │ │ ├── config.js │ │ └── jax.js │ └── output │ ├── CommonHTML │ ├── autoload │ │ ├── annotation-xml.js │ │ ├── maction.js │ │ ├── menclose.js │ │ ├── mglyph.js │ │ ├── mmultiscripts.js │ │ ├── ms.js │ │ ├── mtable.js │ │ └── multiline.js │ ├── config.js │ ├── fonts │ │ └── TeX │ │ │ ├── AMS-Regular.js │ │ │ ├── Caligraphic-Bold.js │ │ │ ├── Fraktur-Bold.js │ │ │ ├── Fraktur-Regular.js │ │ │ ├── Main-Bold.js │ │ │ ├── Math-BoldItalic.js │ │ │ ├── SansSerif-Bold.js │ │ │ ├── SansSerif-Italic.js │ │ │ ├── SansSerif-Regular.js │ │ │ ├── Script-Regular.js │ │ │ ├── Typewriter-Regular.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ └── jax.js │ ├── HTML-CSS │ ├── autoload │ │ ├── annotation-xml.js │ │ ├── maction.js │ │ ├── menclose.js │ │ ├── mglyph.js │ │ ├── mmultiscripts.js │ │ ├── ms.js │ │ ├── mtable.js │ │ └── multiline.js │ ├── config.js │ ├── fonts │ │ ├── Asana-Math │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Gyre-Pagella │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Gyre-Termes │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Latin-Modern │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size6 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size7 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── Neo-Euler │ │ │ ├── Alphabets │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── STIX-Web │ │ │ ├── Alphabets │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Arrows │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── DoubleStruck │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Latin │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Marks │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Misc │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Monospace │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Normal │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Italic │ │ │ │ │ └── Main.js │ │ │ ├── Operators │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Script │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Shapes │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Size5 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Symbols │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ ├── STIX │ │ │ ├── General │ │ │ │ ├── Bold │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BBBold.js │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathBold.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ ├── BoldItalic │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ ├── Italic │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ ├── MathScript.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ └── ij.js │ │ │ │ └── Regular │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BBBold.js │ │ │ │ │ ├── BlockElements.js │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CJK.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── Fraktur.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ ├── Hiragana.js │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathBold.js │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MathSS.js │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ ├── MathScript.js │ │ │ │ │ ├── MathTT.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── Specials.js │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ ├── SupplementalArrowsB.js │ │ │ │ │ └── ij.js │ │ │ ├── IntegralsD │ │ │ │ ├── Bold │ │ │ │ │ └── All.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── IntegralsSm │ │ │ │ ├── Bold │ │ │ │ │ └── All.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── IntegralsUp │ │ │ │ ├── Bold │ │ │ │ │ └── All.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── IntegralsUpD │ │ │ │ ├── Bold │ │ │ │ │ └── All.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── IntegralsUpSm │ │ │ │ ├── Bold │ │ │ │ │ └── All.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── NonUnicode │ │ │ │ ├── Bold │ │ │ │ │ ├── All.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── PrivateUse.js │ │ │ │ ├── BoldItalic │ │ │ │ │ ├── All.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── PrivateUse.js │ │ │ │ ├── Italic │ │ │ │ │ ├── All.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── PrivateUse.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── PrivateUse.js │ │ │ ├── SizeFiveSym │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── SizeFourSym │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── SizeOneSym │ │ │ │ ├── Bold │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── SizeThreeSym │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── SizeTwoSym │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── Variants │ │ │ │ ├── Bold │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── All.js │ │ │ │ │ └── Main.js │ │ │ ├── fontdata-1.0.js │ │ │ ├── fontdata-beta.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ └── TeX │ │ │ ├── AMS │ │ │ └── Regular │ │ │ │ ├── Arrows.js │ │ │ │ ├── BBBold.js │ │ │ │ ├── BoxDrawing.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Dingbats.js │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── PUA.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ └── SuppMathOperators.js │ │ │ ├── Caligraphic │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ ├── Greek │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Main │ │ │ ├── Bold │ │ │ │ ├── Arrows.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ ├── SuppMathOperators.js │ │ │ │ └── SupplementalArrowsA.js │ │ │ ├── Italic │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── Main.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ └── SpacingModLetters.js │ │ │ ├── Math │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ └── Italic │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Italic │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Script │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Typewriter │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── WinChrome │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── WinIE6 │ │ │ └── Regular │ │ │ │ ├── AMS.js │ │ │ │ ├── Bold.js │ │ │ │ └── Main.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ ├── imageFonts.js │ └── jax.js │ ├── NativeMML │ ├── config.js │ └── jax.js │ ├── PlainSource │ ├── config.js │ └── jax.js │ ├── PreviewHTML │ ├── config.js │ └── jax.js │ └── SVG │ ├── autoload │ ├── annotation-xml.js │ ├── maction.js │ ├── menclose.js │ ├── mglyph.js │ ├── mmultiscripts.js │ ├── ms.js │ ├── mtable.js │ └── multiline.js │ ├── config.js │ ├── fonts │ ├── Asana-Math │ │ ├── Alphabets │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── DoubleStruck │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Latin │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Misc │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Monospace │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── NonUnicode │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── SansSerif │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size6 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ ├── Gyre-Pagella │ │ ├── Alphabets │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── DoubleStruck │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Latin │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Misc │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Monospace │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── NonUnicode │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── SansSerif │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size6 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ ├── Gyre-Termes │ │ ├── Alphabets │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── DoubleStruck │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Latin │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Misc │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Monospace │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── NonUnicode │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── SansSerif │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size6 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ ├── Latin-Modern │ │ ├── Alphabets │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── DoubleStruck │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Latin │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Misc │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Monospace │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── NonUnicode │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── SansSerif │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size6 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size7 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ ├── Neo-Euler │ │ ├── Alphabets │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── NonUnicode │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ ├── STIX-Web │ │ ├── Alphabets │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Arrows │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── DoubleStruck │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Fraktur │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Latin │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Main │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Marks │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Misc │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Monospace │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Normal │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ └── Italic │ │ │ │ └── Main.js │ │ ├── Operators │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── SansSerif │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Script │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Shapes │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Size5 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Symbols │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── Variants │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ ├── Italic │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ └── TeX │ │ ├── AMS │ │ └── Regular │ │ │ ├── Arrows.js │ │ │ ├── BoxDrawing.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── Dingbats.js │ │ │ ├── EnclosedAlphanum.js │ │ │ ├── GeneralPunctuation.js │ │ │ ├── GeometricShapes.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── Latin1Supplement.js │ │ │ ├── LatinExtendedA.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── Main.js │ │ │ ├── MathOperators.js │ │ │ ├── MiscMathSymbolsB.js │ │ │ ├── MiscSymbols.js │ │ │ ├── MiscTechnical.js │ │ │ ├── PUA.js │ │ │ ├── SpacingModLetters.js │ │ │ └── SuppMathOperators.js │ │ ├── Caligraphic │ │ ├── Bold │ │ │ └── Main.js │ │ └── Regular │ │ │ └── Main.js │ │ ├── Fraktur │ │ ├── Bold │ │ │ ├── BasicLatin.js │ │ │ ├── Main.js │ │ │ ├── Other.js │ │ │ └── PUA.js │ │ └── Regular │ │ │ ├── BasicLatin.js │ │ │ ├── Main.js │ │ │ ├── Other.js │ │ │ └── PUA.js │ │ ├── Main │ │ ├── Bold │ │ │ ├── Arrows.js │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── CombDiactForSymbols.js │ │ │ ├── GeneralPunctuation.js │ │ │ ├── GeometricShapes.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── Latin1Supplement.js │ │ │ ├── LatinExtendedA.js │ │ │ ├── LatinExtendedB.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── Main.js │ │ │ ├── MathOperators.js │ │ │ ├── MiscMathSymbolsA.js │ │ │ ├── MiscSymbols.js │ │ │ ├── MiscTechnical.js │ │ │ ├── SpacingModLetters.js │ │ │ ├── SuppMathOperators.js │ │ │ └── SupplementalArrowsA.js │ │ ├── Italic │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── GeneralPunctuation.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── LatinExtendedA.js │ │ │ ├── LatinExtendedB.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── Main.js │ │ │ └── MathOperators.js │ │ └── Regular │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── GeometricShapes.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── LatinExtendedA.js │ │ │ ├── LatinExtendedB.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── Main.js │ │ │ ├── MathOperators.js │ │ │ ├── MiscSymbols.js │ │ │ ├── SpacingModLetters.js │ │ │ └── SuppMathOperators.js │ │ ├── Math │ │ ├── BoldItalic │ │ │ └── Main.js │ │ └── Italic │ │ │ └── Main.js │ │ ├── SansSerif │ │ ├── Bold │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── Main.js │ │ │ └── Other.js │ │ ├── Italic │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── Main.js │ │ │ └── Other.js │ │ └── Regular │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── Main.js │ │ │ └── Other.js │ │ ├── Script │ │ └── Regular │ │ │ ├── BasicLatin.js │ │ │ └── Main.js │ │ ├── Size1 │ │ └── Regular │ │ │ └── Main.js │ │ ├── Size2 │ │ └── Regular │ │ │ └── Main.js │ │ ├── Size3 │ │ └── Regular │ │ │ └── Main.js │ │ ├── Size4 │ │ └── Regular │ │ │ └── Main.js │ │ ├── Typewriter │ │ └── Regular │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── Main.js │ │ │ └── Other.js │ │ ├── fontdata-extra.js │ │ └── fontdata.js │ └── jax.js ├── spec ├── lib │ └── math_renderer_spec.rb ├── pretty_text_spec.rb └── system │ └── core_features_spec.rb ├── stylelint.config.mjs └── translator.yml /.discourse-compatibility: -------------------------------------------------------------------------------- 1 | < 3.5.0.beta1-dev: 90a56a5b463546cba5017cf25168bae759bcbf77 2 | < 3.4.0.beta1-dev: 19ab34b62ab75589419ee39af7d6ba2fec1bdc4a 3 | < 3.3.0.beta1-dev: 2984713f68044544129b3575b9e2f9be31105293 4 | 3.1.999: 529ad1fe6da924da378a60bec48c35657bb01a68 5 | -------------------------------------------------------------------------------- /.github/workflows/discourse-plugin.yml: -------------------------------------------------------------------------------- 1 | name: Discourse Plugin 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | 9 | jobs: 10 | ci: 11 | uses: discourse/.github/.github/workflows/discourse-plugin.yml@v1 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /gems 3 | /auto_generated 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true 2 | auto-install-peers = false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /public 2 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("@discourse/lint-configs/prettier"); 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_gem: 2 | rubocop-discourse: stree-compat.yml 3 | -------------------------------------------------------------------------------- /.streerc: -------------------------------------------------------------------------------- 1 | --print-width=100 2 | --plugins=plugin/trailing_comma 3 | -------------------------------------------------------------------------------- /.template-lintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("@discourse/lint-configs/template-lint"); 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | group :development do 6 | gem "rubocop-discourse" 7 | gem "syntax_tree" 8 | end 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) Civilized Discourse Construction Kit, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discourse Math Plugin 2 | 3 | Adds LaTeX support to your Discourse instance. 4 | 5 | For more information, please see: https://meta.discourse.org/t/discourse-math-plugin/65770 6 | -------------------------------------------------------------------------------- /assets/stylesheets/ext/discourse-chat.scss: -------------------------------------------------------------------------------- 1 | .chat-message-text { 2 | // huge selector complexity/specificity makes it hard to do differently 3 | // this is done to limit the size of the chat message after MathJax has rendered 4 | // ultimately we would want a better solution to avoid channel jumpyness 5 | // topics suffer from the same issue 6 | .MJXc-display, 7 | .MathJax_CHTML { 8 | margin: 0 !important; 9 | padding: 0 !important; 10 | overflow: hidden !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /config/locales/server.ar.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ar: 8 | site_settings: 9 | discourse_math_enabled: "تفعيل المكوِّن الإضافي للمعادلات الرياضية في Discourse (سيضيف معالجة خاصة إلى كتل $ و$$)" 10 | discourse_math_provider: "مقدِّم خدمة عرض المعادلات الرياضية الافتراضي" 11 | discourse_math_zoom_on_hover: "التكبير بنسبة 200% عند التمرير فوق العنصر (MathJax فقط)" 12 | discourse_math_enable_accessibility: "تفعيل ميزات الوصول (MathJax فقط)" 13 | discourse_math_enable_asciimath: "تفعيل asciimath (سيضيف معالجة خاصة إلى الإدخالات المفصولة برمز %) (MathJax فقط)" 14 | -------------------------------------------------------------------------------- /config/locales/server.be.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | be: 8 | -------------------------------------------------------------------------------- /config/locales/server.bg.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | bg: 8 | -------------------------------------------------------------------------------- /config/locales/server.bs_BA.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | bs_BA: 8 | -------------------------------------------------------------------------------- /config/locales/server.ca.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ca: 8 | site_settings: 9 | discourse_math_enabled: "Habilita el connector de Discourse Math (afegirà un processament especial als blocs $ i $$)" 10 | discourse_math_provider: "Proveïdor de representació matemàtica per defecte" 11 | discourse_math_zoom_on_hover: "Zoom del 200% en passar el cursor (sols MathJax)" 12 | discourse_math_enable_accessibility: "Activa les funcions d'accessibilitat (sols MathJax)" 13 | discourse_math_enable_asciimath: "Habilita asciimath (afegirà un processament especial a l'entrada delimitada amb %) (només MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.cs.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | cs: 8 | site_settings: 9 | discourse_math_enabled: "Povolit Discourse matematický plugin (přidá speciální zpracování pro $ a $$ bloky)" 10 | -------------------------------------------------------------------------------- /config/locales/server.da.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | da: 8 | site_settings: 9 | discourse_math_enabled: "Aktivér Discourse Math-plugin (tilføjer særlig behandling til $ og $$ blokke)" 10 | discourse_math_provider: "Standard leverandør af matematisk gengivelse" 11 | discourse_math_zoom_on_hover: "Zoom 200% på hover (kun MathJax)" 12 | discourse_math_enable_accessibility: "Aktivér tilgængelighedsfunktioner (kun MathJax)" 13 | discourse_math_enable_asciimath: "Aktivér asciimath (tilføjer særlig behandling til% afgrænset input) (kun MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.de.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | de: 8 | site_settings: 9 | discourse_math_enabled: "Aktiviere das Discourse-Math-Plug-in (fügt spezielle Bearbeitungsschritte für $- und $$-Blöcke hinzu)" 10 | discourse_math_provider: "Standard-Math-Rendering-Provider" 11 | discourse_math_zoom_on_hover: "200 % Zoom beim Drüberfahren (nur MathJax)" 12 | discourse_math_enable_accessibility: "Aktiviere Bedienungshilfen (nur MathJax)" 13 | discourse_math_enable_asciimath: "Aktiviere asciimath (fügt spezielle Bearbeitungsschritte für durch % getrennte Eingabe hinzu) (nur MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.el.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | el: 8 | -------------------------------------------------------------------------------- /config/locales/server.en.yml: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | # 3 | 4 | en: 5 | site_settings: 6 | discourse_math_enabled: "Enable Discourse Math plugin (will add special processing to $ and $$ blocks)" 7 | discourse_math_provider: "Default math rendering provider" 8 | discourse_math_zoom_on_hover: "Zoom 200% on hover (MathJax only)" 9 | discourse_math_enable_accessibility: "Enable accessibility features (MathJax only)" 10 | discourse_math_enable_asciimath: "Enable asciimath (will add special processing to % delimited input) (MathJax only)" 11 | -------------------------------------------------------------------------------- /config/locales/server.en_GB.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | en_GB: 8 | -------------------------------------------------------------------------------- /config/locales/server.es.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | es: 8 | site_settings: 9 | discourse_math_enabled: "Habilitar el complemento Discourse Math (añadirá procesamiento especial para bloques $ y $$)" 10 | discourse_math_provider: "Proveedor de renderizado matemático por defecto" 11 | discourse_math_zoom_on_hover: "Zoom 200 % al pasar por encima (solo MathJax)" 12 | discourse_math_enable_accessibility: "Habilitar funciones de accesibilidad (solo MathJax)" 13 | discourse_math_enable_asciimath: "Activar asciimath (añadirá un procesamiento especial a la entrada eliminada) (solo MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.et.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | et: 8 | -------------------------------------------------------------------------------- /config/locales/server.fa_IR.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | fa_IR: 8 | -------------------------------------------------------------------------------- /config/locales/server.fi.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | fi: 8 | site_settings: 9 | discourse_math_enabled: "Ota käyttöön Discoursen matematiikkalisäosa ($- ja $$-blokit käsitellään erityisellä tavalla)" 10 | discourse_math_provider: "Oletusmatematiikkarenderöintipalveluntarjoaja" 11 | discourse_math_zoom_on_hover: "Suurenna 200 % osoitettaessa (vain MathJax)" 12 | discourse_math_enable_accessibility: "Ota käyttöön helppokäyttöisyysominaisuudet (vain MathJax)" 13 | discourse_math_enable_asciimath: "Ota käyttöön asciimath (lisää erikoiskäsittelyn merkillä % eroteltuun syötteeseen) (vain MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.fr.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | fr: 8 | site_settings: 9 | discourse_math_enabled: "Activer l'extension Discourse Math (cette opération ajoutera un traitement spécifique des blocs $ et $$)" 10 | discourse_math_provider: "Fournisseur de rendu mathématique par défaut" 11 | discourse_math_zoom_on_hover: "Zoom à 200 % au passage de la souris (MathJax uniquement)" 12 | discourse_math_enable_accessibility: "Activer les fonctions d'accessibilité (MathJax uniquement)" 13 | discourse_math_enable_asciimath: "Activer asciimath (cette opération ajoutera un traitement spécifique à l'entrée délimitée %) (MathJax uniquement)" 14 | -------------------------------------------------------------------------------- /config/locales/server.gl.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | gl: 8 | -------------------------------------------------------------------------------- /config/locales/server.he.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | he: 8 | site_settings: 9 | discourse_math_enabled: "הפעלת תוסף המתמטיקה של Discourse (תוספת של עיבוד מיוחד של בלוקים מסוג $ ומסוג $$)" 10 | discourse_math_provider: "ספק עיבוד התמטיקה כבררת מחדל" 11 | discourse_math_zoom_on_hover: "התקרבות של 200% עם מעבר עם הסמן מעל (MathJax בלבד)" 12 | discourse_math_enable_accessibility: "הפעלת תכונות נגישות (MathJax בלבד)" 13 | discourse_math_enable_asciimath: "הפעלת asciimath (יוסיף עיבוד מיוחד לקלט שמופרד ב־%) (MathJax בלבד)" 14 | -------------------------------------------------------------------------------- /config/locales/server.hr.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | hr: 8 | site_settings: 9 | discourse_math_enabled: "Uključi \"Discourse Math\" dodatak (dodati će posebnu obradu za $ i $$ blokove) " 10 | discourse_math_provider: "Zadani matematički obrađivač" 11 | discourse_math_zoom_on_hover: "Zumiraj 200% na hover (samo za MathJax)" 12 | discourse_math_enable_accessibility: "Uključi mogučnost pristupačnosti (samo za MathJax)" 13 | discourse_math_enable_asciimath: "Uključki asciimath (dadati će posebnu obradu za unos odjeljen % znakom)" 14 | -------------------------------------------------------------------------------- /config/locales/server.hu.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | hu: 8 | site_settings: 9 | discourse_math_enabled: "Discourse Math plugin engedélyezése(speciális feldolgozást ad hozzá a $ és $$ blokkokhoz)" 10 | -------------------------------------------------------------------------------- /config/locales/server.hy.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | hy: 8 | site_settings: 9 | discourse_math_enabled: "Միացնել Discourse Math պլագինը (կավելացնի հատուկ գործընթացներ $ և $$ բլոկներին)" 10 | discourse_math_provider: "Լռելյայն math rendering մատակարար" 11 | discourse_math_zoom_on_hover: "Մեծացնել 200% -ով վրան պահելիս (միայն MathJax)" 12 | discourse_math_enable_accessibility: "Միացնել հասանելիության հատկանիշները (միայն MathJax)" 13 | discourse_math_enable_asciimath: "Միացնել asciimath -ը (կավելացնի հատում գործընթաց %-ով սահմանափակված ներդիրներին) (միայն MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.id.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | id: 8 | site_settings: 9 | discourse_math_zoom_on_hover: "Zoom 200% pada hover (hanya MathJax)" 10 | discourse_math_enable_accessibility: "Aktifkan fitur aksesibilitas (hanya MathJax)" 11 | -------------------------------------------------------------------------------- /config/locales/server.it.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | it: 8 | site_settings: 9 | discourse_math_enabled: "Abilita il plugin Discourse Math (attiverà un'elaborazione speciale per i blocchi $ e $$)" 10 | discourse_math_provider: "Fornitore di rendering matematico predefinito" 11 | discourse_math_zoom_on_hover: "Zoom del 200% al passaggio del mouse (solo MathJax)" 12 | discourse_math_enable_accessibility: "Abilita funzioni di accessibilità (solo MathJax)" 13 | discourse_math_enable_asciimath: "Abilita asciimath (aggiungerà un'elaborazione speciale al testo delimitato da %) (solo MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.ja.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ja: 8 | site_settings: 9 | discourse_math_enabled: "Discourse Math プラグインを有効化する($ と $$ ブロックに特別な処理を追加します)" 10 | discourse_math_provider: "デフォルトの数学レンダリングプロバイダー" 11 | discourse_math_zoom_on_hover: "ホバー時に 200% ズーム(MathJax のみ)" 12 | discourse_math_enable_accessibility: "アクセシビリティ機能を有効にする(MathJax のみ)" 13 | discourse_math_enable_asciimath: "asciimath を有効にする(% 区切りの入力に特別な処理を追加します)(MathJax のみ)" 14 | -------------------------------------------------------------------------------- /config/locales/server.ko.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ko: 8 | site_settings: 9 | discourse_math_enabled: "Discourse Math 플러그인 사용 ($ 및 $$ 블록에 특수 처리 추가)" 10 | discourse_math_provider: "기본 수학 렌더링 공급자" 11 | discourse_math_zoom_on_hover: "호버에서 줌 200 % (MathJax 만 해당)" 12 | discourse_math_enable_accessibility: "접근성 기능 사용 (MathJax 만 해당)" 13 | discourse_math_enable_asciimath: "Asciimath 활성화 (% 구분 입력에 특수 처리 추가) (MathJax 만 해당)" 14 | -------------------------------------------------------------------------------- /config/locales/server.lt.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | lt: 8 | -------------------------------------------------------------------------------- /config/locales/server.lv.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | lv: 8 | -------------------------------------------------------------------------------- /config/locales/server.nb_NO.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | nb_NO: 8 | -------------------------------------------------------------------------------- /config/locales/server.nl.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | nl: 8 | site_settings: 9 | discourse_math_enabled: "Discourse Math-plug-in inschakelen (voegt speciale verwerking toe aan $- en $$-blokken)" 10 | discourse_math_provider: "Standaard provider voor wiskundige weergave" 11 | discourse_math_zoom_on_hover: "200% zoomen bij muis over (alleen MathJax)" 12 | discourse_math_enable_accessibility: "Toegankelijkheidsfuncties inschakelen (alleen MathJax)" 13 | discourse_math_enable_asciimath: "Asciimath inschakelen (voegt speciale verwerking toe aan invoer gescheiden door %) (alleen MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.pl_PL.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | pl_PL: 8 | site_settings: 9 | discourse_math_enabled: "Włącz plugin Discourse Math (doda specjalne przetwarzanie do bloków $ i $$)" 10 | discourse_math_provider: "Domyślny dostawca silnika renderującego" 11 | discourse_math_zoom_on_hover: "Powiększ do 200% po najechaniu myszą (tylko MathJax)" 12 | discourse_math_enable_accessibility: "Włącz funkcje ułatwień dostępu (tylko MathJax)" 13 | discourse_math_enable_asciimath: "Aktywuj asciimath (doda specjalne przetwarzanie % ograniczonych znaków) (tylko MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.pt.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | pt: 8 | site_settings: 9 | discourse_math_enabled: "Ativar extensão \"Discourse Math\" (irá adicionar um processamento especial para $ e $$ blocos)" 10 | -------------------------------------------------------------------------------- /config/locales/server.pt_BR.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | pt_BR: 8 | site_settings: 9 | discourse_math_enabled: "Ativar o plugin Discourse Math (adicionará processamento especial a blocos $ e $$)" 10 | discourse_math_provider: "Provedor padrão de renderização matemática" 11 | discourse_math_zoom_on_hover: "Ampliar 200% ao focar (somente MathJax)" 12 | discourse_math_enable_accessibility: "Ativar recursos de acessibilidade (somente MathJax)" 13 | discourse_math_enable_asciimath: "Ativar asciimath (adicionará processamento especial a entradas delimitadas por %) (somente MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.ro.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ro: 8 | -------------------------------------------------------------------------------- /config/locales/server.ru.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ru: 8 | site_settings: 9 | discourse_math_enabled: "Включить плагин Discourse Math (добавит специальную обработку в блоки $ и $$)" 10 | discourse_math_provider: "Математический провайдер по умолчанию" 11 | discourse_math_zoom_on_hover: "Увеличение 200% при наведении (только MathJax)" 12 | discourse_math_enable_accessibility: "Включить специальные возможности (только MathJax)" 13 | discourse_math_enable_asciimath: "Включить asciimath (добавит специальную обработку к вводу с разделителями %) (только MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.sk.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sk: 8 | site_settings: 9 | discourse_math_enabled: "Povoliť matematický plugin Discourse (pridá špeciálne spracovanie $ a $$ blokov)" 10 | -------------------------------------------------------------------------------- /config/locales/server.sl.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sl: 8 | site_settings: 9 | discourse_math_enabled: "Omogoči vtičnik Discourse Math (dodana bo posebna obdelava vnosov, razmejenih z $ in $$)" 10 | discourse_math_provider: "Privzeti ponudnik matematičnega upodabljanja" 11 | discourse_math_zoom_on_hover: "Povečanje na 200% ob lebdenju (samo za MathJax)" 12 | discourse_math_enable_accessibility: "Omogoči nastavitve dostopnosti (samo za MathJax)" 13 | discourse_math_enable_asciimath: "Omogoči asciimath (dodana bo posebna obdelava vnosov, razmejenih s %) (samo za MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.sq.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sq: 8 | -------------------------------------------------------------------------------- /config/locales/server.sr.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sr: 8 | -------------------------------------------------------------------------------- /config/locales/server.sv.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sv: 8 | site_settings: 9 | discourse_math_enabled: "Aktivera Discourse Math-tillägget (lägger till specialbehandling av $- och $$-block)" 10 | discourse_math_provider: "Standardleverantör för matematisk rendering" 11 | discourse_math_zoom_on_hover: "Zooma 200 % under pekaren (endast MathJax)" 12 | discourse_math_enable_accessibility: "Aktivera tillgänglighetsfunktioner (endast MathJax)" 13 | discourse_math_enable_asciimath: "Aktivera asciimath (lägger till specialbehandling av %-avgränsad inmatning) (endast MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.sw.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | sw: 8 | site_settings: 9 | discourse_math_enabled: "Ruhusu Programu Jalizi ya Discourse Hisabati (itaongeza vitu kwenye $ na $$)" 10 | -------------------------------------------------------------------------------- /config/locales/server.te.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | te: 8 | -------------------------------------------------------------------------------- /config/locales/server.th.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | th: 8 | -------------------------------------------------------------------------------- /config/locales/server.tr_TR.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | tr_TR: 8 | site_settings: 9 | discourse_math_enabled: "Discourse Matematik eklentisini etkinleştir ($ ve $$ bloklarına özel işleme ekler)" 10 | discourse_math_provider: "Varsayılan matematik işleme sağlayıcısı" 11 | discourse_math_zoom_on_hover: "Üzerine gelindiğinde %200 yakınlaştırın (yalnızca MathJax)" 12 | discourse_math_enable_accessibility: "Erişilebilirlik özelliklerini etkinleştirin (yalnızca MathJax)" 13 | discourse_math_enable_asciimath: "Asciimath'i etkinleştirin (% ile sınırlandırılmış girdiye özel işlem ekler) (yalnızca MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.ug.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ug: 8 | -------------------------------------------------------------------------------- /config/locales/server.uk.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | uk: 8 | site_settings: 9 | discourse_math_enabled: "Увімкнути Discourse Math plugin (додасть спеціальну обробку для $ та $$ блоків)" 10 | discourse_math_provider: "Провайдер математичного рендерингу за замовчуванням" 11 | discourse_math_zoom_on_hover: "Збільшення 200% при наведенні (лише для MathJax)" 12 | discourse_math_enable_accessibility: "Увімкнути доступні функції (лише для MathJax)" 13 | discourse_math_enable_asciimath: "Увімкніть asciimath (додасть спеціальну обробку до % delimited input) (MathJax тільки)" 14 | -------------------------------------------------------------------------------- /config/locales/server.ur.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | ur: 8 | site_settings: 9 | discourse_math_enabled: "ڈسکورس ریاضی پلگ اِن فعال کریں ($ اور $$ بلاکس کیلئے خصوصی پروسیسنگ شامل کردی جائیگی)" 10 | discourse_math_provider: "ڈیفالٹ ریاضی رَینڈرِنگ فراہم کنندہ" 11 | discourse_math_zoom_on_hover: "ہَووَر پر 200% زوم کریں (صرف مَیتھ جَیکس)" 12 | discourse_math_enable_accessibility: "سائی کی خصوصیات فعال کریں (صرف مَیتھ جَیکس)" 13 | discourse_math_enable_asciimath: "asciimath فعال کریں (٪ ڈیلیمٹیڈ اِن پٹ پر خصوصی پروسیسنگ شامل کرے گا) (صرف مَیتھ جَیکس)" 14 | -------------------------------------------------------------------------------- /config/locales/server.vi.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | vi: 8 | -------------------------------------------------------------------------------- /config/locales/server.zh_CN.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | zh_CN: 8 | site_settings: 9 | discourse_math_enabled: "启用 Discourse Math 插件(将对 $ 和 $$ 进行特殊处理)" 10 | discourse_math_provider: "默认数学呈现提供程序" 11 | discourse_math_zoom_on_hover: "鼠标悬停放大 200%(仅 MathJax)" 12 | discourse_math_enable_accessibility: "启用无障碍功能(仅 MathJax)" 13 | discourse_math_enable_asciimath: "启用 asciimath(将对由 % 分隔的输入进行特殊处理)(仅 MathJax)" 14 | -------------------------------------------------------------------------------- /config/locales/server.zh_TW.yml: -------------------------------------------------------------------------------- 1 | # WARNING: Never edit this file. 2 | # It will be overwritten when translations are pulled from Crowdin. 3 | # 4 | # To work with us on translations, join this project: 5 | # https://translate.discourse.org/ 6 | 7 | zh_TW: 8 | site_settings: 9 | discourse_math_enabled: "啟動Discourse Math的插件(將會新增特殊的處理過程到$和$$的區塊)" 10 | -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | discourse_math_enabled: 3 | default: false 4 | client: true 5 | discourse_math_provider: 6 | default: "mathjax" 7 | client: true 8 | type: enum 9 | choices: 10 | - mathjax 11 | - katex 12 | discourse_math_zoom_on_hover: 13 | default: false 14 | client: true 15 | discourse_math_enable_accessibility: 16 | default: false 17 | client: true 18 | discourse_math_enable_asciimath: 19 | default: false 20 | client: true 21 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import DiscourseRecommended from "@discourse/lint-configs/eslint"; 2 | 3 | export default [...DiscourseRecommended]; 4 | -------------------------------------------------------------------------------- /lib/math_renderer.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # the idea here is to support server rendering 4 | # there is a node example and we could inject this in a post processing job 5 | class DiscourseMath::MathRenderer 6 | def self.render(mathjax, options = {}) 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "devDependencies": { 4 | "@discourse/lint-configs": "2.21.0", 5 | "ember-template-lint": "7.7.0", 6 | "eslint": "9.27.0", 7 | "prettier": "3.5.3", 8 | "stylelint": "16.19.1" 9 | }, 10 | "engines": { 11 | "node": ">= 22", 12 | "npm": "please-use-pnpm", 13 | "yarn": "please-use-pnpm", 14 | "pnpm": "9.x" 15 | }, 16 | "packageManager": "pnpm@9.15.5" 17 | } 18 | -------------------------------------------------------------------------------- /plugin.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # name: discourse-math 4 | # about: Uses MathJax 203 or KaTeX 97 to render math expressions. 5 | # meta_topic_id: 65770 6 | # version: 0.9 7 | # authors: Sam Saffron (sam) 8 | # url: https://github.com/discourse/discourse-math 9 | 10 | register_asset "stylesheets/common/discourse-math.scss" 11 | register_asset "stylesheets/ext/discourse-chat.scss" 12 | 13 | enabled_site_setting :discourse_math_enabled 14 | 15 | after_initialize do 16 | if respond_to?(:chat) && SiteSetting.chat_enabled 17 | chat&.enable_markdown_feature("discourse-math") 18 | chat&.enable_markdown_feature("math") 19 | chat&.enable_markdown_feature("asciimath") if SiteSetting.discourse_math_enable_asciimath 20 | end 21 | end 22 | -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /public/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /public/mathjax/extensions/CHTML-preview.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/CHTML-preview.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Callback.Queue(["Require",MathJax.Ajax,"[MathJax]/extensions/fast-preview.js"],["loadComplete",MathJax.Ajax,"[MathJax]/extensions/CHTML-preview.js"]); 20 | -------------------------------------------------------------------------------- /public/mathjax/extensions/HTML-CSS/handle-floats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/extensions/HTML-CSS/handle-floats.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Extension["HTML-CSS/handle-floats"]={version:"2.7.5"};MathJax.Hub.Startup.signal.Post("HTML-CSS handle-floats Ready");MathJax.Ajax.loadComplete("[MathJax]/extensions/HTML-CSS/handle-floats.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/invalid_keypress.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/extensions/a11y/invalid_keypress.mp3 -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/invalid_keypress.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/extensions/a11y/invalid_keypress.ogg -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/functions/algebra.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"Algebra","mappings":{"default":{"default":"degree"}},"key":"deg","names":["deg"]},{"category":"Algebra","mappings":{"default":{"default":"determinant","short":"det"}},"key":"det","names":["det"]},{"category":"Algebra","mappings":{"default":{"default":"dimension"}},"key":"dim","names":["dim"]},{"category":"Algebra","mappings":{"default":{"default":"homomorphism","short":"hom"}},"key":"hom","names":["hom","Hom"]},{"category":"Algebra","mappings":{"default":{"default":"kernel"}},"key":"ker","names":["ker"]},{"category":"Algebra","mappings":{"default":{"default":"trace"}},"key":"Tr","names":["Tr","tr"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/symbols/hebrew_letters.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"Lo","mappings":{"default":{"default":"alef symbol","alternative":"first transfinite cardinal","short":"alef"}},"key":"2135"},{"category":"Lo","mappings":{"default":{"default":"bet symbol","alternative":"second transfinite cardinal","short":"bet"}},"key":"2136"},{"category":"Lo","mappings":{"default":{"default":"gimel symbol","alternative":"third transfinite cardinal","short":"gimel"}},"key":"2137"},{"category":"Lo","mappings":{"default":{"default":"dalet symbol","alternative":"fourth transfinite cardinal","short":"dalet"}},"key":"2138"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/length.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"Length","mappings":{"default":{"default":"millimeters"}},"key":"mm","names":["mm"]},{"category":"Length","mappings":{"default":{"default":"centimeters"}},"key":"cm","names":["cm"]},{"category":"Length","mappings":{"default":{"default":"meters"}},"key":"m","names":["m"]},{"category":"Length","mappings":{"default":{"default":"kilometers"}},"key":"km","names":["km"]},{"category":"Length","mappings":{"default":{"default":"feet"}},"key":"ft","names":["ft","ft."]},{"category":"Length","mappings":{"default":{"default":"inches"}},"key":"in","names":["in","in."]},{"category":"Length","mappings":{"default":{"default":"miles"}},"key":"mi","names":["mi","mi."]},{"category":"Length","mappings":{"default":{"default":"yards"}},"key":"yd","names":["yd","yd."]},{"category":"","mappings":{"default":{"default":"nautical miles"}},"key":"n.m.","names":["n.m."]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/memory.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"","mappings":{"default":{"default":"bits"}},"key":"b","names":["b"]},{"category":"","mappings":{"default":{"default":"bytes"}},"key":"B","names":["B"]},{"category":"","mappings":{"default":{"default":"kilobytes"}},"key":"KB","names":["KB"]},{"category":"","mappings":{"default":{"default":"megabytes"}},"key":"MB","names":["MB"]},{"category":"","mappings":{"default":{"default":"gigabytes"}},"key":"GB","names":["GB"]},{"category":"","mappings":{"default":{"default":"terabytes"}},"key":"TB","names":["TB"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/other.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"","mappings":{"default":{"default":"dozen"}},"key":"doz","names":["doz","doz.","dz","dz."]},{"category":"","mappings":{"default":{"default":"square"}},"key":"sq","names":["sq","sq."]},{"category":"","mappings":{"default":{"default":"hectare"}},"key":"ha","names":["ha"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/speed.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"","mappings":{"default":{"default":"knot"}},"key":"kt","names":["kt","kt."]},{"category":"","mappings":{"default":{"default":"miles per hour"}},"key":"mph","names":["mph"]},{"category":"","mappings":{"default":{"default":"revolutions per minute"}},"key":"rpm","names":["rpm"]},{"category":"","mappings":{"default":{"default":"kilometers per hour"}},"key":"kmh","names":["kmh"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/temperature.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"","mappings":{"default":{"default":"Fahrenheit"}},"key":"F","names":["F","F.","°F"]},{"category":"","mappings":{"default":{"default":"Celsius","alternative":"Centigrade"}},"key":"C","names":["C","°C"]},{"category":"","mappings":{"default":{"default":"Kelvin"}},"key":"K","names":["K","°K"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/time.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"time","mappings":{"default":{"default":"nanoseconds"}},"key":"ns","names":["ns"]},{"category":"time","mappings":{"default":{"default":"microseconds"}},"key":"µs","names":["µs"]},{"category":"time","mappings":{"default":{"default":"milliseconds"}},"key":"ms","names":["ms"]},{"category":"time","mappings":{"default":{"default":"seconds"}},"key":"s","names":["s"]},{"category":"time","mappings":{"default":{"default":"minutes"}},"key":"min","names":["min"]},{"category":"time","mappings":{"default":{"default":"hours"}},"key":"h","names":["h","hr"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/en/units/weight.js: -------------------------------------------------------------------------------- 1 | [{"locale":"en"},{"category":"","mappings":{"default":{"default":"pounds"}},"key":"lb","names":["lb","lb."]},{"category":"","mappings":{"default":{"default":"long tons"}},"key":"LT","names":["LT","L.T."]},{"category":"","mappings":{"default":{"default":"ounces"}},"key":"oz","names":["oz","oz."]},{"key":"µg","names":["µg","mcg"],"mappings":{"default":{"default":"micrograms"}}},{"category":"","mappings":{"default":{"default":"grams"}},"key":"gr","names":["g","gr"]},{"category":"","mappings":{"default":{"default":"kilograms"}},"key":"kg","names":["kg"]},{"category":"","mappings":{"default":{"default":"micrograms"}},"key":"mcg","names":["mg","µg"]},{"category":"","mappings":{"default":{"default":"milligrams"}},"key":"mg","names":["mg"]},{"category":"","mappings":{"default":{"default":"tons"}},"key":"t","names":["t","T"]}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/functions/algebra.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"deg","names":["deg"],"mappings":{"default":{"default":"grados"}},"category":"Algebra"},{"key":"det","names":["det"],"mappings":{"default":{"default":"determinante"}},"category":"Algebra"},{"key":"dim","names":["dim"],"mappings":{"default":{"default":"dimensión"}},"category":"Algebra"},{"key":"hom","names":["hom","Hom"],"mappings":{"default":{"default":"homomorfismo"}},"category":"Algebra"},{"key":"ker","names":["ker"],"mappings":{"default":{"default":"kernel"}},"category":"Algebra"},{"key":"Tr","names":["Tr","tr"],"mappings":{"default":{"default":"traza"}},"category":"Algebra"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/greek-scripts.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/hebrew_letters.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"2135","mappings":{"default":{"default":"alef"}},"category":"Lo"},{"key":"2136","mappings":{"default":{"default":"bet"}},"category":"Lo"},{"key":"2137","mappings":{"default":{"default":"guímel"}},"category":"Lo"},{"key":"2138","mappings":{"default":{"default":"dálet"}},"category":"Lo"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/latin-lower-phonetic.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"00F8","mappings":{"default":{"default":"o barrada"}},"category":"Ll"},{"key":"0111","mappings":{"default":{"default":"d con barra"}},"category":"Ll"},{"key":"0127","mappings":{"default":{"default":"h con guión"}},"category":"Ll"},{"key":"0142","mappings":{"default":{"default":"l con guión"}},"category":"Ll"},{"key":"0167","mappings":{"default":{"default":"t con guión"}},"category":"Ll"},{"key":"019B","mappings":{"default":{"default":"lambda tachada"}},"category":"Ll"},{"key":"1E9B","mappings":{"default":{"default":"s larga con punto arriba"}},"category":"Ll"},{"key":"0138","mappings":{"default":{"default":"kra"}},"category":"Ll"},{"key":"0192","mappings":{"default":{"default":"f con gancho"}},"category":"Ll"},{"key":"019A","mappings":{"default":{"default":"l con barra"}},"category":"Ll"},{"key":"025B","mappings":{"default":{"default":"e abierta"}},"category":"Ll"},{"key":"0149","mappings":{"default":{"default":"n precedida por apóstrofe"}},"category":"Ll"},{"key":"014B","mappings":{"default":{"default":"eng"}},"category":"Ll"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/latin-rest.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"24C8","mappings":{"default":{"default":"S en círculo"}},"category":"So"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/math_characters.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"2113","mappings":{"default":{"default":"script l"}},"category":"Ll"},{"key":"2118","mappings":{"default":{"default":"p de weierstrass"}},"category":"Sm"},{"key":"2145","mappings":{"default":{"default":"mayúscula D"}},"category":"Lu"},{"key":"2146","mappings":{"default":{"default":"d"}},"category":"Ll"},{"key":"2147","mappings":{"default":{"default":"e"}},"category":"Ll"},{"key":"2148","mappings":{"default":{"default":"i"}},"category":"Ll"},{"category":"Ll","mappings":{"default":{"default":"cursiva dotless i"}},"key":"1D6A4"},{"category":"Ll","mappings":{"default":{"default":"cursiva dotless j"}},"key":"1D6A5"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/math_non_characters.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"210F","mappings":{"default":{"default":"h barra"}},"category":"Ll"},{"key":"2116","mappings":{"default":{"default":"signo de número"}},"category":"So"},{"key":"2117","mappings":{"default":{"default":"derechos de autor de sonido"}},"category":"So"},{"key":"211E","mappings":{"default":{"default":"receta"}},"category":"So"},{"key":"2122","mappings":{"default":{"default":"registrado"}},"category":"So"},{"key":"2125","mappings":{"default":{"default":"onza"}},"category":"So"},{"key":"2126","mappings":{"default":{"default":"ohmio"}},"category":"Lu"},{"key":"2127","mappings":{"default":{"default":"ohmio invertido"}},"category":"So"},{"key":"212A","mappings":{"default":{"default":"grados kelvin"}},"category":"Lu"},{"key":"212B","mappings":{"default":{"default":"angstrom"}},"category":"Lu"},{"key":"2132","mappings":{"default":{"default":"mayúscula F invertida"}},"category":"Lu"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/symbols/other_stars.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"2605","mappings":{"default":{"default":"estrella rellena"}},"category":"So"},{"key":"2606","mappings":{"default":{"default":"estrella vacía"}},"category":"So"},{"key":"2713","mappings":{"default":{"default":"check mark"}},"category":"So"},{"key":"2717","mappings":{"default":{"default":"ballot x"}},"category":"So"},{"key":"2720","mappings":{"default":{"default":"cruz de Malta"}},"category":"So"},{"key":"2736","mappings":{"default":{"default":"estrella rellena de seis puntas"}},"category":"So"},{"key":"273D","mappings":{"default":{"default":"heavy teardrop spoked asterisk"}},"category":"So"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/length.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"mm","names":["mm"],"mappings":{"default":{"default":"milímetro"}},"category":"Length"},{"key":"cm","names":["cm"],"mappings":{"default":{"default":"centímetro"}},"category":"Length"},{"key":"m","names":["m"],"mappings":{"default":{"default":"metro"}},"category":"Length"},{"key":"km","names":["km"],"mappings":{"default":{"default":"kilómetro"}},"category":"Length"},{"key":"ft","names":["ft","ft."],"mappings":{"default":{"default":"pies"}},"category":"Length"},{"key":"in","names":["in","in."],"mappings":{"default":{"default":"pulgada"}},"category":"Length"},{"key":"mi","names":["mi","mi."],"mappings":{"default":{"default":"milla"}},"category":"Length"},{"key":"yd","names":["yd","yd."],"mappings":{"default":{"default":"yarda"}},"category":"Length"},{"key":"n.m.","names":["n.m."],"mappings":{"default":{"default":"millas náuticas"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/memory.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"b","names":["b"],"mappings":{"default":{"default":"bit"}}},{"key":"B","names":["B"],"mappings":{"default":{"default":"byte"}}},{"key":"KB","names":["KB"],"mappings":{"default":{"default":"kilobyte"}}},{"key":"MB","names":["MB"],"mappings":{"default":{"default":"megabyte"}}},{"key":"GB","names":["GB"],"mappings":{"default":{"default":"gigabyte"}}},{"key":"TB","names":["TB"],"mappings":{"default":{"default":"terabyte"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/other.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"doz","names":["doz","doz.","dz","dz."],"mappings":{"default":{"default":"docena"}}},{"key":"sq","names":["sq","sq."],"mappings":{"default":{"default":"al cuadrado"}}},{"key":"ha","names":["ha"],"mappings":{"default":{"default":"hectarea"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/speed.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"kt","names":["kt","kt."],"mappings":{"default":{"default":"nudo"}}},{"key":"mph","names":["mph"],"mappings":{"default":{"default":"millas por hora"}}},{"key":"rpm","names":["rpm"],"mappings":{"default":{"default":"revoluciones por minuto"}}},{"key":"kmh","names":["kmh"],"mappings":{"default":{"default":"kilómetros por hora"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/temperature.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"F","names":["F","F.","°F"],"mappings":{"default":{"default":"Fahrenheit"}}},{"key":"C","names":["C","°C"],"mappings":{"default":{"default":"centígrados"}}},{"key":"K","names":["K","°K"],"mappings":{"default":{"default":"Kelvin"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/time.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"ns","names":["ns"],"mappings":{"default":{"default":"nanosegundos"}},"category":"time"},{"key":"µs","names":["µs"],"mappings":{"default":{"default":"microsegundos"}},"category":"time"},{"key":"ms","names":["ms"],"mappings":{"default":{"default":"milisegundos"}},"category":"time"},{"key":"s","names":["s"],"mappings":{"default":{"default":"segundos"}},"category":"time"},{"key":"min","names":["min"],"mappings":{"default":{"default":"minutos"}},"category":"time"},{"key":"h","names":["h","hr"],"mappings":{"default":{"default":"hora"}},"category":"time"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/volume.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"bbl","names":["bbl.","bbl"],"mappings":{"default":{"default":"barrile"}},"category":"volume"},{"key":"cu","names":["cu","cu."],"mappings":{"default":{"default":"cúbico"}},"category":"volume"},{"key":"fl. oz.","names":["fl. oz."],"mappings":{"default":{"default":"onzas líquidas"}},"category":"volume"},{"key":"gal","names":["gal","gal."],"mappings":{"default":{"default":"galone"}},"category":"volume"},{"key":"pt","names":["pt","pt."],"mappings":{"default":{"default":"pinta"}},"category":"volume"},{"key":"qt","names":["qt","qt."],"mappings":{"default":{"default":"quart"}},"category":"volume"},{"key":"tbsp","names":["tbsp","tbsp."],"mappings":{"default":{"default":"cuchara"}},"category":"volume"},{"key":"tsp","names":["tsp","tsp."],"mappings":{"default":{"default":"cucharilla"}},"category":"volume"},{"key":"cc","names":["cc"],"mappings":{"default":{"default":"centímetros cúbicos"}},"category":"volume"},{"key":"kl","names":["kl"],"mappings":{"default":{"default":"kilolitro"}},"category":"volume"},{"key":"l","names":["l"],"mappings":{"default":{"default":"litro"}},"category":"volume"},{"key":"ml","names":["ml"],"mappings":{"default":{"default":"mililitro"}},"category":"volume"}] 2 | -------------------------------------------------------------------------------- /public/mathjax/extensions/a11y/mathmaps/es/units/weight.js: -------------------------------------------------------------------------------- 1 | [{"locale":"es"},{"key":"lb","names":["lb","lb."],"mappings":{"default":{"default":"libra"}}},{"key":"LT","names":["LT","L.T."],"mappings":{"default":{"default":"libras imperiales"}}},{"key":"oz","names":["oz","oz."],"mappings":{"default":{"default":"onza"}}},{"key":"µg","names":["µg","mcg"],"mappings":{"default":{"default":"microgramo"}}},{"key":"gr","names":["g","gr"],"mappings":{"default":{"default":"gramo"}}},{"key":"kg","names":["kg"],"mappings":{"default":{"default":"kilogramo"}}},{"key":"mg","names":["mg"],"mappings":{"default":{"default":"miligramo"}}},{"key":"t","names":["t","T"],"mappings":{"default":{"default":"tonelada"}}}] 2 | -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Bold.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Vector-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Bold.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Vector-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Bold.woff -------------------------------------------------------------------------------- /public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discourse/discourse-math/b1cc1481c92e14bfdffd7446df17959f851bc213/public/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Vector-Regular.woff -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u0311":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiacritMarks.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u20DB":c.ACCENT,"\u20DC":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiactForSymbols.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Dingbats.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2772":c.OPEN},postfix:{"\u2773":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/Dingbats.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u03F6":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/GreekAndCoptic.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u00B0":c.ORD,"\u00B4":c.ACCENT,"\u00B8":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Latin1Supplement.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2145":c.ORD21,"\u2146":[2,0,b.ORD]}}});MathJax.Ajax.loadComplete(a.optableDir+"/LetterlikeSymbols.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u27E6":c.OPEN,"\u27EA":c.OPEN,"\u27EC":c.OPEN},postfix:{"\u27E7":c.CLOSE,"\u27EB":c.CLOSE,"\u27ED":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsA.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u2B45":c.RELSTRETCH,"\u2B46":c.RELSTRETCH}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscSymbolsAndArrows.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u23B4":c.WIDEACCENT,"\u23B5":c.WIDEACCENT,"\u23DC":c.WIDEACCENT,"\u23DD":c.WIDEACCENT,"\u23E0":c.WIDEACCENT,"\u23E1":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscTechnical.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u02CD":c.WIDEACCENT,"\u02DA":c.ACCENT,"\u02DD":c.ACCENT,"\u02F7":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/SpacingModLetters.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/element/mml/optable/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/element/mml/optable/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u27F0":c.RELSTRETCH,"\u27F1":c.RELSTRETCH,"\u27FB":c.WIDEREL,"\u27FD":c.WIDEREL,"\u27FE":c.WIDEREL,"\u27FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsA.js")})(MathJax.ElementJax.mml); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/AsciiMath/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/AsciiMath/config.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.7.5",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{fixphi:true,useMathMLspacing:true,displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/config.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.7.5",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/j.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Jcirc:"\u0134",Jcy:"\u0419",Jsercy:"\u0408",Jukcy:"\u0404",jcirc:"\u0135",jcy:"\u0439",jsercy:"\u0458",jukcy:"\u0454"});MathJax.Ajax.loadComplete(a.entityDir+"/j.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/k.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{KHcy:"\u0425",KJcy:"\u040C",Kappa:"\u039A",Kcedil:"\u0136",Kcy:"\u041A",kcedil:"\u0137",kcy:"\u043A",kgreen:"\u0138",khcy:"\u0445",kjcy:"\u045C"});MathJax.Ajax.loadComplete(a.entityDir+"/k.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/q.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{QUOT:"\u0022",qint:"\u2A0C",qprime:"\u2057",quaternions:"\u210D",quatint:"\u2A16",quest:"\u003F",questeq:"\u225F",quot:"\u0022"});MathJax.Ajax.loadComplete(a.entityDir+"/q.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/w.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",wedgeq:"\u2259",wp:"\u2118",wr:"\u2240",wreath:"\u2240"});MathJax.Ajax.loadComplete(a.entityDir+"/w.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/x.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",xhArr:"\u27FA",xharr:"\u27F7",xlArr:"\u27F8",xlarr:"\u27F5",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",xoplus:"\u2A01",xotime:"\u2A02",xrArr:"\u27F9",xrarr:"\u27F6",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0"});MathJax.Ajax.loadComplete(a.entityDir+"/x.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/y.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{YAcy:"\u042F",YIcy:"\u0407",YUcy:"\u042E",Yacute:"\u00DD",Ycirc:"\u0176",Ycy:"\u042B",Yuml:"\u0178",yacute:"\u00FD",yacy:"\u044F",ycirc:"\u0177",ycy:"\u044B",yicy:"\u0457",yucy:"\u044E",yuml:"\u00FF"});MathJax.Ajax.loadComplete(a.entityDir+"/y.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/input/MathML/entities/z.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | (function(a){MathJax.Hub.Insert(a.Parse.Entity,{ZHcy:"\u0416",Zacute:"\u0179",Zcaron:"\u017D",Zcy:"\u0417",Zdot:"\u017B",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zacute:"\u017A",zcaron:"\u017E",zcy:"\u0437",zdot:"\u017C",zeetrf:"\u2128",zhcy:"\u0436",zwj:"\u200D",zwnj:"\u200C"});MathJax.Ajax.loadComplete(a.entityDir+"/z.js")})(MathJax.InputJax.MathML); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.NeoEulerMathJax_Shapes={directory:"Shapes/Regular",family:"NeoEulerMathJax_Shapes",testString:"\u00A0\u2B1A",32:[0,0,333,0,0],160:[0,0,333,0,0],11034:[690,6,816,60,756]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Shapes"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"]); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{64256:[691,0,610,15,666],64257:[691,0,556,14,536],64258:[691,0,556,15,535],64259:[691,0,833,15,813],64260:[691,0,833,15,812]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{8355:[676,0,611,11,583],8356:[684,16,500,21,477],8359:[676,14,1369,16,1341],8364:[672,12,500,29,478]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9651:[811,127,1145,35,1110],9655:[791,284,1043,70,1008],9661:[811,127,1145,35,1110],9665:[791,284,1043,35,973],9674:[795,289,790,45,745],9708:[811,127,1145,35,1110]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{42898:[691,19,769,27,734]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/LatinExtendedD.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{10184:[547,13,1025,62,943],10185:[547,13,1025,62,943],10216:[732,193,445,69,399],10217:[732,193,445,46,376]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/MiscMathSymbolsA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{9837:[740,5,437,86,389],9838:[818,210,490,97,393],9839:[818,210,490,52,438]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{7424:[475,0,515,9,503],7431:[461,0,531,20,511],7452:[461,19,600,16,584]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/PhoneticExtensions.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold"],{8319:[700,-275,491,15,478]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Bold/SuperAndSubscripts.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{64256:[698,205,613,-169,726],64257:[703,205,556,-188,514],64258:[704,205,556,-186,553],64259:[703,205,856,-169,814],64260:[704,205,854,-169,851]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8413:[760,254,0,-753,256]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CombDiactForSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8355:[669,0,668,-13,661],8356:[683,12,500,-32,510],8359:[669,13,1229,-28,1173],8364:[681,17,562,34,546]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-bold-italic"],{8706:[686,10,559,44,559],8722:[297,-209,606,51,555]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/BoldItalic/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{64256:[678,207,527,-147,673],64257:[681,207,500,-141,481],64258:[682,204,500,-141,518],64259:[681,207,744,-147,725],64260:[682,207,745,-147,763]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8355:[653,0,611,8,645],8356:[670,8,500,10,517],8359:[653,13,1149,0,1126],8364:[664,12,500,16,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{8706:[668,11,471,40,471],8722:[286,-220,675,86,590]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXGeneral-italic"],{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Italic/ij.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{64256:[683,0,605,20,655],64257:[683,0,558,32,523],64258:[683,0,556,31,522],64259:[683,0,832,20,797],64260:[683,0,830,20,796]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/AlphaPresentForms.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12306:[662,0,685,10,672],12336:[417,-93,1412,45,1367]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CJK.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{9251:[16,120,500,40,460]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ControlPictures.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8355:[662,0,556,11,546],8356:[676,8,500,12,490],8359:[662,10,1182,16,1141],8364:[664,12,500,38,462]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/CurrencySymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{12398:[661,41,901,37,840]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Hiragana.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{42791:[683,233,481,9,427],42898:[676,14,734,18,700]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/LatinExtendedD.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{65533:[662,217,872,55,817]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/Specials.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{8319:[676,-270,541,57,484]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/SuperAndSubscripts.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXGeneral,{120484:[441,11,278,47,235],120485:[441,207,278,-124,246]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/General/Regular/ij.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsD={directory:"IntegralsD/Regular",family:"STIXIntegralsD",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[2000,269,585,56,1035],8750:[2000,269,635,56,1035]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsD");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsD/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsSm={directory:"IntegralsSm/Regular",family:"STIXIntegralsSm",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[690,189,496,41,552],8750:[690,189,560,41,552]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsSm");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsSm/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXIntegralsUp={directory:"IntegralsUp/Regular",family:"STIXIntegralsUp",Ranges:[[32,32,"All"],[160,160,"All"],[8747,8755,"All"],[10763,10780,"All"]],8747:[824,320,366,59,408],8750:[824,320,397,35,486]};MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUp");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/IntegralsUp/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Bold/All.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold"]={directory:"NonUnicode/Bold",family:"STIXNonUnicode",weight:"bold",Ranges:[[32,32,"All"],[160,160,"All"],[57344,63743,"PrivateUse"]]};MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Bold/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/BoldItalic/All.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-bold-italic"]={directory:"NonUnicode/BoldItalic",family:"STIXNonUnicode",weight:"bold",style:"italic",Ranges:[[32,32,"All"],[160,160,"All"],[57344,63743,"PrivateUse"]]};MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold-italic");MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/BoldItalic/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXNonUnicode-italic"],{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Italic/All.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.STIXNonUnicode,{32:[0,0,250,0,0],160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/All.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["STIXSizeOneSym-bold"],{8512:[1500,-22,1341,60,1281]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/SizeOneSym/Bold/All.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9484:[694,-306,500,55,444],9488:[694,-306,500,55,444],9492:[366,22,500,55,444],9496:[366,22,500,55,444],9585:[694,195,889,0,860],9586:[694,195,889,0,860]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/BoxDrawing.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{770:[845,-561,0,-2347,13],771:[899,-628,0,-2332,-3]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/CombDiacritMarks.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10003:[706,34,833,84,749],10016:[716,22,833,48,786]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Dingbats.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9416:[709,175,902,8,894]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/EnclosedAlphanum.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GeneralPunctuation.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9632:[689,0,778,55,722],9633:[689,0,778,55,722],9650:[575,20,722,84,637],9651:[575,20,722,84,637],9654:[539,41,778,83,694],9660:[576,19,722,84,637],9661:[576,19,722,84,637],9664:[539,41,778,83,694],9674:[716,132,667,56,611]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{989:[605,85,778,55,719],1008:[434,6,667,37,734]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/GreekAndCoptic.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{160:[0,0,250,0,0],165:[683,0,750,11,738],174:[709,175,947,32,915],240:[749,21,556,42,509]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Latin1Supplement.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{295:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LatinExtendedA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8463:[695,13,540,42,562],8487:[684,22,722,44,675],8498:[695,1,556,55,497],8502:[763,21,667,-22,687],8503:[764,43,444,-22,421],8504:[764,43,667,54,640],8513:[705,23,639,37,577]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{10731:[716,132,667,56,611]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscMathSymbolsB.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{9733:[694,111,944,49,895]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{8994:[378,-122,778,55,722],8995:[378,-143,778,55,722]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/MiscTechnical.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_AMS,{710:[845,-561,2333,-14,2346],732:[899,-628,2333,1,2330]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/SpacingModLetters.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"]={directory:"Fraktur/Bold",family:"MathJax_Fraktur",weight:"bold",testString:"MathJax Fraktur",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur-bold"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Main.js"]); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"],{160:[0,0,250,0,0],8216:[708,-411,254,53,187],8217:[692,-394,254,58,193]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Other.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Fraktur-bold"],{58113:[630,27,587,64,512],58114:[693,212,394,37,408],58115:[681,219,387,36,384],58116:[473,212,593,67,531],58117:[684,27,393,33,387],58120:[679,220,981,32,875],58121:[717,137,727,17,633]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/PUA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur={directory:"Fraktur/Regular",family:"MathJax_Fraktur",testString:"MathJax Fraktur",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"]); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur,{160:[0,0,250,0,0],8216:[708,-410,215,45,158],8217:[692,-395,215,49,163]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Other.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Fraktur,{58112:[683,32,497,75,430],58113:[616,30,498,35,432],58114:[680,215,333,29,339],58115:[679,224,329,28,318],58116:[471,214,503,52,449],58117:[686,20,333,26,315],58118:[577,21,334,29,347],58119:[475,22,501,10,514]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/PUA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8407:[723,-513,0,-542,-33]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/CombDiactForSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{9651:[711,-1,1022,69,953],9657:[540,39,575,33,542],9661:[500,210,1022,68,953],9667:[539,38,575,33,542],9711:[711,211,1150,65,1084]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{305:[452,8,394,24,367]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LatinExtendedA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{567:[451,201,439,-12,420]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LatinExtendedB.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8463:[694,8,668,45,642],8465:[702,8,831,64,798],8467:[702,19,474,-1,446],8472:[461,210,740,72,726],8476:[711,16,831,42,824],8501:[694,0,703,64,638]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10216:[750,249,447,127,382],10217:[750,249,447,64,319]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscMathSymbolsA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{9824:[719,129,894,64,829],9825:[711,24,894,65,828],9826:[719,154,894,64,828],9827:[719,129,894,32,861],9837:[750,17,447,64,381],9838:[741,223,447,57,389],9839:[724,224,447,63,382]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{8968:[750,248,511,194,493],8969:[750,248,511,17,317],8970:[749,248,511,194,493],8971:[749,248,511,17,317],8994:[405,-108,1150,65,1084],8995:[392,-126,1150,64,1085]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/MiscTechnical.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10815:[686,0,900,39,860],10927:[696,199,894,96,797],10928:[697,199,894,96,797]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/SuppMathOperators.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-bold"],{10229:[518,17,1805,64,1741],10230:[518,17,1833,96,1773],10231:[518,17,2126,64,2061],10232:[547,46,1868,64,1804],10233:[547,46,1870,64,1804],10234:[547,46,2126,64,2060],10236:[518,17,1833,65,1773]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/SupplementalArrowsA.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8211:[285,-248,511,91,554],8212:[285,-248,1022,117,1038],8216:[694,-379,307,197,362],8217:[694,-379,307,213,377],8220:[694,-379,514,243,606],8221:[694,-379,514,176,538]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/GeneralPunctuation.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/Latin1Supplement.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS["MathJax_Main-italic"],{8463:[695,13,540,42,562]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/LetterlikeSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9651:[716,0,889,59,828],9657:[505,5,500,26,474],9661:[500,215,889,59,828],9667:[505,5,500,26,473],9711:[715,215,1000,56,944]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/GeometricShapes.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{9824:[727,130,778,55,723],9825:[716,33,778,55,723],9826:[727,162,778,55,723],9827:[726,130,778,28,750],9837:[750,22,389,55,332],9838:[734,223,389,65,324],9839:[723,223,389,55,333]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/MiscSymbols.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Main,{730:[715,-542,500,147,352]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/SpacingModLetters.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_Script,{160:[0,0,250,0,0]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Other.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS["STIXMathJax_Shapes-bold-italic"]={directory:"Shapes/BoldItalic",family:"STIXMathJax_Shapes",weight:"bold",style:"italic",id:"STIXWEBSHAPESBI",32:[0,0,250,0,0,""],160:[0,0,250,0,0,""],9251:[31,120,500,40,460,"460 -120h-420v151h42v-76h336v76h42v-151"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/BoldItalic/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244,"12 501Q12 527 31 542T63 558Q73 560 77 560Q114 560 128 528Q133 518 188 293T244 61Q244 56 223 50T195 43Q192 43 190 45T102 263T14 486Q12 496 12 501"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeneralPunctuation.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Fraktur-bold"]={directory:"Fraktur/Bold",family:"MathJax_Fraktur",id:"MJFRAKB",weight:"bold",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur={directory:"Fraktur/Regular",family:"MathJax_Fraktur",id:"MJFRAK",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2015 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{8710:[716,0,818,70,751,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js 3 | * 4 | * Copyright (c) 2009-2015 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{8710:[716,0,833,46,786,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MathOperators.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-bold"]={directory:"SansSerif/Bold",family:"MathJax_SansSerif",id:"MJSSB",weight:"bold",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"]={directory:"SansSerif/Italic",family:"MathJax_SansSerif",id:"MJSSI",style:"italic",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif={directory:"SansSerif/Regular",family:"MathJax_SansSerif",id:"MJSS",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /public/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js 3 | * 4 | * Copyright (c) 2009-2018 The MathJax Consortium 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter={directory:"Typewriter/Regular",family:"MathJax_Typewriter",id:"MJTT",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Main.js"); 20 | -------------------------------------------------------------------------------- /spec/lib/math_renderer_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | # TODO server rendering 4 | -------------------------------------------------------------------------------- /spec/system/core_features_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | RSpec.describe "Core features", type: :system do 4 | before { enable_current_plugin } 5 | 6 | it_behaves_like "having working core features" 7 | end 8 | -------------------------------------------------------------------------------- /stylelint.config.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | extends: ["@discourse/lint-configs/stylelint"], 3 | }; 4 | -------------------------------------------------------------------------------- /translator.yml: -------------------------------------------------------------------------------- 1 | # Configuration file for discourse-translator-bot 2 | 3 | files: 4 | - source_path: config/locales/server.en.yml 5 | destination_path: server.yml 6 | --------------------------------------------------------------------------------