gollum 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gollum might be problematic. Click here for more details.
- data/HISTORY.md +3 -0
- data/LICENSE +21 -0
- data/README.md +435 -0
- data/Rakefile +146 -0
- data/bin/gollum +41 -0
- data/docs/sanitization.md +32 -0
- data/gollum.gemspec +506 -0
- data/lib/gollum.rb +58 -0
- data/lib/gollum/albino.rb +17 -0
- data/lib/gollum/file.rb +60 -0
- data/lib/gollum/frontend/app.rb +154 -0
- data/lib/gollum/frontend/public/css/editbar.css +194 -0
- data/lib/gollum/frontend/public/css/gollum.css +55 -0
- data/lib/gollum/frontend/public/css/screen.css +726 -0
- data/lib/gollum/frontend/public/css/syntax.css +61 -0
- data/lib/gollum/frontend/public/images/buttons.png +0 -0
- data/lib/gollum/frontend/public/images/editbar-buttons.png +0 -0
- data/lib/gollum/frontend/public/images/example.png +0 -0
- data/lib/gollum/frontend/public/images/twiddle-down.png +0 -0
- data/lib/gollum/frontend/public/images/twiddle-right.png +0 -0
- data/lib/gollum/frontend/public/images/txt.png +0 -0
- data/lib/gollum/frontend/public/javascript/MathJax/COPYING.txt +202 -0
- data/lib/gollum/frontend/public/javascript/MathJax/MathJax.js +1704 -0
- data/lib/gollum/frontend/public/javascript/MathJax/README.txt +480 -0
- data/lib/gollum/frontend/public/javascript/MathJax/config/MMLorHTML.js +63 -0
- data/lib/gollum/frontend/public/javascript/MathJax/config/MathJax.js +351 -0
- data/lib/gollum/frontend/public/javascript/MathJax/config/local/local.js +37 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/AMSmath.js +376 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/AMSsymbols.js +385 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/autobold.js +43 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/boldsymbol.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/mathchoice.js +65 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/newcommand.js +185 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/noErrors.js +169 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/unicode.js +131 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/TeX/verb.js +53 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/jsMath2jax.js +77 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/mml2jax.js +101 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/tex2jax.js +242 -0
- data/lib/gollum/frontend/public/javascript/MathJax/extensions/toMathML.js +140 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/jax.js +1474 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Arrows.js +122 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/BasicLatin.js +58 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/CombDiacritMarks.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/CombDiactForSymbols.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Dingbats.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GeneralPunctuation.js +40 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GeometricShapes.js +66 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/GreekAndCoptic.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/Latin1Supplement.js +37 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/LetterlikeSymbols.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MathOperators.js +228 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js +167 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/MiscTechnical.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SpacingModLetters.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SuppMathOperators.js +289 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/element/mml/optable/SupplementalArrowsB.js +162 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/config.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/a.js +87 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/b.js +114 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/c.js +111 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/d.js +112 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/e.js +88 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/f.js +58 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/fr.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/g.js +82 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/h.js +52 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/i.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/j.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/k.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/l.js +175 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/m.js +61 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/n.js +219 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/o.js +88 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/opf.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/p.js +84 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/q.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/r.js +134 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/s.js +168 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/scr.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/t.js +82 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/u.js +91 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/v.js +73 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/w.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/x.js +47 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/y.js +41 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/entities/z.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/MathML/jax.js +590 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/TeX/config.js +40 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/input/TeX/jax.js +1652 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/menclose.js +61 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/mglyph.js +98 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/autoload/ms.js +49 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/blank.gif +0 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/config.js +127 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js +67 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js +98 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js +49 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js +129 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js +67 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js +116 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js +123 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js +155 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js +59 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js +69 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js +172 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js +260 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js +37 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js +42 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js +87 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js +84 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js +122 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js +67 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js +129 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js +50 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js +119 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js +116 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js +123 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js +155 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js +59 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js +56 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js +56 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js +67 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js +47 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js +129 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js +50 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js +78 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js +116 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js +123 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js +154 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js +58 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js +56 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js +192 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js +78 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js +68 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js +106 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js +82 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js +72 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js +86 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js +50 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js +129 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js +57 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js +74 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js +68 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js +118 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js +85 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js +118 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js +115 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js +154 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js +63 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js +82 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js +380 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js +78 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js +207 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js +89 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js +90 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js +68 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js +88 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js +66 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js +154 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js +74 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js +91 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js +80 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js +79 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js +271 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js +155 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js +182 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js +215 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js +60 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js +242 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js +57 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js +387 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js +51 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js +43 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js +46 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js +63 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js +62 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js +52 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js +77 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js +105 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js +46 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js +63 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js +62 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js +46 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js +64 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js +63 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js +60 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js +44 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js +120 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js +49 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js +373 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata.js +1403 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js +65 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js +55 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js +51 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js +138 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js +43 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js +50 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js +96 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js +95 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js +43 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js +110 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js +109 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js +42 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js +51 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js +44 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GreekAndCoptic.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js +161 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js +94 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +29 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GreekAndCoptic.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedA.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedB.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js +137 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Arrows.js +51 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js +39 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiactForSymbols.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeneralPunctuation.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GreekAndCoptic.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Latin1Supplement.js +32 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedA.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedB.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LetterlikeSymbols.js +33 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js +304 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MathOperators.js +94 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscMathSymbolsA.js +31 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscTechnical.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SuppMathOperators.js +30 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SupplementalArrowsA.js +34 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js +205 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js +204 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js +115 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js +47 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js +115 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js +47 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js +115 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +38 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js +47 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js +54 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js +62 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js +28 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js +74 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js +66 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js +50 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js +77 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js +123 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +36 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js +35 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js +44 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js +43 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js +56 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js +82 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js +111 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js +1691 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/imageFonts.js +185 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/HTML-CSS/jax.js +1991 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/NativeMML/config.js +51 -0
- data/lib/gollum/frontend/public/javascript/MathJax/jax/output/NativeMML/jax.js +230 -0
- data/lib/gollum/frontend/public/javascript/MathJax/test/index-images.html +119 -0
- data/lib/gollum/frontend/public/javascript/MathJax/test/index.html +127 -0
- data/lib/gollum/frontend/public/javascript/MathJax/test/sample.html +99 -0
- data/lib/gollum/frontend/public/javascript/gollum.js +244 -0
- data/lib/gollum/frontend/public/javascript/jquery-1.4.2.min.js +154 -0
- data/lib/gollum/frontend/public/javascript/jquery.previewable_comment_form.js +57 -0
- data/lib/gollum/frontend/public/javascript/jquery.tabs.js +59 -0
- data/lib/gollum/frontend/public/javascript/jquery.text_selection-1.0.0.min.js +1 -0
- data/lib/gollum/frontend/templates/compare.mustache +33 -0
- data/lib/gollum/frontend/templates/create.mustache +39 -0
- data/lib/gollum/frontend/templates/edit.mustache +38 -0
- data/lib/gollum/frontend/templates/editbar.mustache +1196 -0
- data/lib/gollum/frontend/templates/history.mustache +37 -0
- data/lib/gollum/frontend/templates/layout.mustache +33 -0
- data/lib/gollum/frontend/templates/page.mustache +27 -0
- data/lib/gollum/frontend/views/compare.rb +90 -0
- data/lib/gollum/frontend/views/create.rb +21 -0
- data/lib/gollum/frontend/views/edit.rb +13 -0
- data/lib/gollum/frontend/views/editable.rb +13 -0
- data/lib/gollum/frontend/views/history.rb +44 -0
- data/lib/gollum/frontend/views/layout.rb +14 -0
- data/lib/gollum/frontend/views/page.rb +38 -0
- data/lib/gollum/markup.rb +331 -0
- data/lib/gollum/page.rb +354 -0
- data/lib/gollum/pagination.rb +61 -0
- data/lib/gollum/wiki.rb +335 -0
- data/templates/formatting.html +92 -0
- data/test/examples/lotr.git/HEAD +1 -0
- data/test/examples/lotr.git/config +5 -0
- data/test/examples/lotr.git/description +1 -0
- data/test/examples/lotr.git/hooks/applypatch-msg.sample +15 -0
- data/test/examples/lotr.git/hooks/commit-msg.sample +24 -0
- data/test/examples/lotr.git/hooks/post-commit.sample +8 -0
- data/test/examples/lotr.git/hooks/post-receive.sample +15 -0
- data/test/examples/lotr.git/hooks/post-update.sample +8 -0
- data/test/examples/lotr.git/hooks/pre-applypatch.sample +14 -0
- data/test/examples/lotr.git/hooks/pre-commit.sample +46 -0
- data/test/examples/lotr.git/hooks/pre-rebase.sample +169 -0
- data/test/examples/lotr.git/hooks/prepare-commit-msg.sample +36 -0
- data/test/examples/lotr.git/hooks/update.sample +128 -0
- data/test/examples/lotr.git/info/exclude +6 -0
- data/test/examples/lotr.git/info/refs +1 -0
- data/test/examples/lotr.git/objects/06/131480411710c92a82fe2d1e76932c70feb2e5 +0 -0
- data/test/examples/lotr.git/objects/0a/de1e2916346d4c1f2fb63b863fd3c16808fe44 +0 -0
- data/test/examples/lotr.git/objects/0e/d8cbe0a25235bd867e65193c7d837c66b328ef +3 -0
- data/test/examples/lotr.git/objects/24/49c2681badfd3c189e8ed658dacffe8ba48fe5 +0 -0
- data/test/examples/lotr.git/objects/2c/b9156ad383914561a8502fc70f5a1d887e48ad +4 -0
- data/test/examples/lotr.git/objects/5d/cac289a8603188d2c5caf481dcba2985126aaa +0 -0
- data/test/examples/lotr.git/objects/60/f12f4254f58801b9ee7db7bca5fa8aeefaa56b +0 -0
- data/test/examples/lotr.git/objects/71/4323c104239440a5c66ab12a67ed07a83c404f +0 -0
- data/test/examples/lotr.git/objects/93/6b83ee0dd8837adb82511e40d5e4ebe59bb675 +0 -0
- data/test/examples/lotr.git/objects/94/523d7ae48aeba575099dd12926420d8fd0425d +2 -0
- data/test/examples/lotr.git/objects/96/97dc65e095658bbd1b8e8678e08881e86d32f1 +0 -0
- data/test/examples/lotr.git/objects/aa/b61fe89d56f8614c0a8151da34f939dcedfa68 +0 -0
- data/test/examples/lotr.git/objects/c3/b43e9f08966b088e7a0192e436b7a884542e05 +0 -0
- data/test/examples/lotr.git/objects/dc/596d6b2dd89ab05c66f4abd7d5eb706bc17f19 +0 -0
- data/test/examples/lotr.git/objects/ec/da3205bee14520aab5a7bb307392064b938e83 +0 -0
- data/test/examples/lotr.git/objects/fa/e7ef5344202bba4129abdc13060d9297d99465 +3 -0
- data/test/examples/lotr.git/objects/info/packs +2 -0
- data/test/examples/lotr.git/objects/pack/pack-dcbeaf3f6ff6c5eb08ea2b0a2d83626e8763546b.idx +0 -0
- data/test/examples/lotr.git/objects/pack/pack-dcbeaf3f6ff6c5eb08ea2b0a2d83626e8763546b.pack +0 -0
- data/test/examples/lotr.git/packed-refs +2 -0
- data/test/examples/lotr.git/refs/heads/master +1 -0
- data/test/helper.rb +38 -0
- data/test/test_file.rb +18 -0
- data/test/test_markup.rb +348 -0
- data/test/test_page.rb +112 -0
- data/test/test_wiki.rb +201 -0
- metadata +626 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Arrows.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x2190: [511,12,1000,54,944], // LEFTWARDS ARROW
|
25
|
+
0x2191: [694,194,500,17,483], // UPWARDS ARROW
|
26
|
+
0x2192: [512,11,1000,55,945], // RIGHTWARDS ARROW
|
27
|
+
0x2193: [694,194,500,17,483], // DOWNWARDS ARROW
|
28
|
+
0x2194: [511,11,1000,55,945], // LEFT RIGHT ARROW
|
29
|
+
0x2195: [772,272,500,17,483], // UP DOWN ARROW
|
30
|
+
0x2196: [720,196,1000,29,944], // NORTH WEST ARROW
|
31
|
+
0x2197: [720,195,1000,55,970], // NORTH EAST ARROW
|
32
|
+
0x2198: [695,220,1000,55,970], // SOUTH EAST ARROW
|
33
|
+
0x2199: [695,220,1000,29,944], // SOUTH WEST ARROW
|
34
|
+
0x21A6: [512,11,1000,54,945], // RIGHTWARDS ARROW FROM BAR
|
35
|
+
0x21A9: [511,12,1126,54,1070], // LEFTWARDS ARROW WITH HOOK
|
36
|
+
0x21AA: [512,11,1126,55,1071], // RIGHTWARDS ARROW WITH HOOK
|
37
|
+
0x21BC: [511,-230,1000,55,944], // LEFTWARDS HARPOON WITH BARB UPWARDS
|
38
|
+
0x21BD: [270,11,1000,55,944], // LEFTWARDS HARPOON WITH BARB DOWNWARDS
|
39
|
+
0x21C0: [511,-230,1000,55,944], // RIGHTWARDS HARPOON WITH BARB UPWARDS
|
40
|
+
0x21C1: [270,11,1000,55,945], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS
|
41
|
+
0x21CC: [671,11,1000,55,944], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
|
42
|
+
0x21D0: [525,24,1000,55,944], // LEFTWARDS DOUBLE ARROW
|
43
|
+
0x21D1: [694,194,611,31,579], // UPWARDS DOUBLE ARROW
|
44
|
+
0x21D2: [525,25,1000,55,944], // RIGHTWARDS DOUBLE ARROW
|
45
|
+
0x21D3: [694,194,611,31,579], // DOWNWARDS DOUBLE ARROW
|
46
|
+
0x21D4: [525,25,1000,34,966], // LEFT RIGHT DOUBLE ARROW
|
47
|
+
0x21D5: [772,272,611,31,580] // UP DOWN DOUBLE ARROW
|
48
|
+
}
|
49
|
+
);
|
50
|
+
|
51
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/Arrows.js");
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009-2010 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x300: [699,-505,0,-394,-205], // COMBINING GRAVE ACCENT
|
25
|
+
0x301: [699,-505,0,-297,-107], // COMBINING ACUTE ACCENT
|
26
|
+
0x302: [694,-531,0,-388,-113], // COMBINING CIRCUMFLEX ACCENT
|
27
|
+
0x303: [668,-565,0,-417,-84], // COMBINING TILDE
|
28
|
+
0x304: [590,-544,0,-431,-70], // COMBINING MACRON
|
29
|
+
0x306: [694,-515,0,-408,-93], // COMBINING BREVE
|
30
|
+
0x307: [669,-549,0,-310,-191], // COMBINING DOT ABOVE
|
31
|
+
0x308: [669,-554,0,-405,-96], // COMBINING DIAERESIS
|
32
|
+
0x30A: [715,-542,0,-353,-148], // COMBINING RING ABOVE
|
33
|
+
0x30B: [701,-510,0,-378,-80], // COMBINING DOUBLE ACUTE ACCENT
|
34
|
+
0x30C: [644,-513,0,-386,-115], // COMBINING CARON
|
35
|
+
0x338: [716,215,0,-639,-140] // COMBINING LONG SOLIDUS OVERLAY
|
36
|
+
}
|
37
|
+
);
|
38
|
+
|
39
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/CombDiacritMarks.js");
|
@@ -0,0 +1,28 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiactForSymbols.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x20D7: [714,-516,0,29,471] // COMBINING RIGHT ARROW ABOVE
|
25
|
+
}
|
26
|
+
);
|
27
|
+
|
28
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/CombDiactForSymbols.js");
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeneralPunctuation.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x2006: [0,0,167,0,0], // ??
|
25
|
+
0x2013: [285,-248,500,0,499], // EN DASH
|
26
|
+
0x2014: [285,-248,1000,0,999], // EM DASH
|
27
|
+
0x2018: [694,-379,278,64,198], // LEFT SINGLE QUOTATION MARK
|
28
|
+
0x2019: [694,-379,278,78,212], // RIGHT SINGLE QUOTATION MARK
|
29
|
+
0x201C: [694,-379,500,128,466], // LEFT DOUBLE QUOTATION MARK
|
30
|
+
0x201D: [694,-379,500,34,372], // RIGHT DOUBLE QUOTATION MARK
|
31
|
+
0x2020: [705,217,444,55,390], // DAGGER
|
32
|
+
0x2021: [705,206,444,55,389], // DOUBLE DAGGER
|
33
|
+
0x2026: [120,0,1172,78,1093], // HORIZONTAL ELLIPSIS
|
34
|
+
0x2032: [560,-43,275,30,262] // PRIME
|
35
|
+
}
|
36
|
+
);
|
37
|
+
|
38
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/GeneralPunctuation.js");
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009-2010 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x25B3: [716,0,889,59,828], // WHITE UP-POINTING TRIANGLE
|
25
|
+
0x25B9: [505,5,500,26,474], // WHITE RIGHT-POINTING SMALL TRIANGLE
|
26
|
+
0x25BD: [500,215,889,59,828], // WHITE DOWN-POINTING TRIANGLE
|
27
|
+
0x25C3: [505,5,500,26,473], // WHITE LEFT-POINTING SMALL TRIANGLE
|
28
|
+
0x25EF: [715,215,1000,56,944] // LARGE CIRCLE
|
29
|
+
}
|
30
|
+
);
|
31
|
+
|
32
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/GeometricShapes.js");
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GreekAndCoptic.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x393: [681,0,625,25,582], // GREEK CAPITAL LETTER GAMMA
|
25
|
+
0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA
|
26
|
+
0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA
|
27
|
+
0x39B: [717,0,694,32,661], // GREEK CAPITAL LETTER LAMDA
|
28
|
+
0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI
|
29
|
+
0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI
|
30
|
+
0x3A3: [683,1,722,55,666], // GREEK CAPITAL LETTER SIGMA
|
31
|
+
0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON
|
32
|
+
0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI
|
33
|
+
0x3A8: [683,0,778,54,722], // GREEK CAPITAL LETTER PSI
|
34
|
+
0x3A9: [704,1,722,44,677] // GREEK CAPITAL LETTER OMEGA
|
35
|
+
}
|
36
|
+
);
|
37
|
+
|
38
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/GreekAndCoptic.js");
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Latin1Supplement.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0xA0: [0,0,250,0,0], // NO-BREAK SPACE
|
25
|
+
0xAC: [356,-89,667,55,611], // NOT SIGN
|
26
|
+
0xB1: [666,0,778,55,722], // PLUS-MINUS SIGN
|
27
|
+
0xD7: [491,-9,778,147,631], // MULTIPLICATION SIGN
|
28
|
+
0xF7: [537,36,778,55,721] // DIVISION SIGN
|
29
|
+
}
|
30
|
+
);
|
31
|
+
|
32
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/Latin1Supplement.js");
|
@@ -0,0 +1,28 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedA.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x131: [442,0,278,26,255] // LATIN SMALL LETTER DOTLESS I
|
25
|
+
}
|
26
|
+
);
|
27
|
+
|
28
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LatinExtendedA.js");
|
@@ -0,0 +1,28 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedB.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x237: [442,205,306,-55,218] // LATIN SMALL LETTER DOTLESS J
|
25
|
+
}
|
26
|
+
);
|
27
|
+
|
28
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LatinExtendedB.js");
|
@@ -0,0 +1,33 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LetterlikeSymbols.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.Hub.Insert(
|
22
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'],
|
23
|
+
{
|
24
|
+
0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi
|
25
|
+
0x2111: [705,11,722,54,693], // BLACK-LETTER CAPITAL I
|
26
|
+
0x2113: [706,20,417,6,398], // SCRIPT SMALL L
|
27
|
+
0x2118: [453,216,636,67,625], // SCRIPT CAPITAL P
|
28
|
+
0x211C: [717,22,722,40,716], // BLACK-LETTER CAPITAL R
|
29
|
+
0x2135: [694,1,611,54,556] // ALEF SYMBOL
|
30
|
+
}
|
31
|
+
);
|
32
|
+
|
33
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LetterlikeSymbols.js");
|
@@ -0,0 +1,304 @@
|
|
1
|
+
/*************************************************************
|
2
|
+
*
|
3
|
+
* MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js
|
4
|
+
*
|
5
|
+
* Copyright (c) 2009-2010 Design Science, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
*
|
19
|
+
*/
|
20
|
+
|
21
|
+
MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'] = {
|
22
|
+
directory: 'Main/Regular',
|
23
|
+
family: 'MathJax_Main',
|
24
|
+
testString: "MathJax Main",
|
25
|
+
skew: {
|
26
|
+
0x131: 0.0278,
|
27
|
+
0x237: 0.0833,
|
28
|
+
0x2113: 0.111,
|
29
|
+
0x2118: 0.111,
|
30
|
+
0x2202: 0.0833
|
31
|
+
},
|
32
|
+
Ranges: [
|
33
|
+
[0x2B0,0x2FF,"SpacingModLetters"],
|
34
|
+
[0x300,0x36F,"CombDiacritMarks"],
|
35
|
+
[0x25A0,0x25FF,"GeometricShapes"],
|
36
|
+
[0x2600,0x26FF,"MiscSymbols"]
|
37
|
+
],
|
38
|
+
0x20: [0,0,250,0,0], // SPACE
|
39
|
+
0x21: [716,-1,278,78,199], // EXCLAMATION MARK
|
40
|
+
0x22: [694,-379,500,34,372], // QUOTATION MARK
|
41
|
+
0x23: [694,194,833,55,778], // NUMBER SIGN
|
42
|
+
0x24: [750,56,500,54,444], // DOLLAR SIGN
|
43
|
+
0x25: [750,56,833,56,776], // PERCENT SIGN
|
44
|
+
0x26: [717,22,778,42,727], // AMPERSAND
|
45
|
+
0x27: [694,-379,278,78,212], // APOSTROPHE
|
46
|
+
0x28: [751,251,389,94,333], // LEFT PARENTHESIS
|
47
|
+
0x29: [750,250,389,55,294], // RIGHT PARENTHESIS
|
48
|
+
0x2A: [750,-319,500,64,435], // ASTERISK
|
49
|
+
0x2B: [583,83,778,55,722], // PLUS SIGN
|
50
|
+
0x2C: [121,194,278,78,210], // COMMA
|
51
|
+
0x2D: [252,-179,333,11,277], // HYPHEN-MINUS
|
52
|
+
0x2E: [120,0,278,78,199], // FULL STOP
|
53
|
+
0x2F: [751,250,500,56,445], // SOLIDUS
|
54
|
+
0x30: [666,22,500,39,460], // DIGIT ZERO
|
55
|
+
0x31: [666,0,500,83,427], // DIGIT ONE
|
56
|
+
0x32: [666,1,500,49,449], // DIGIT TWO
|
57
|
+
0x33: [665,23,500,41,457], // DIGIT THREE
|
58
|
+
0x34: [677,0,500,28,471], // DIGIT FOUR
|
59
|
+
0x35: [666,22,500,49,449], // DIGIT FIVE
|
60
|
+
0x36: [666,22,500,42,456], // DIGIT SIX
|
61
|
+
0x37: [676,22,500,55,485], // DIGIT SEVEN
|
62
|
+
0x38: [666,22,500,43,457], // DIGIT EIGHT
|
63
|
+
0x39: [666,22,500,41,456], // DIGIT NINE
|
64
|
+
0x3A: [430,0,278,78,199], // COLON
|
65
|
+
0x3B: [430,194,278,78,202], // SEMICOLON
|
66
|
+
0x3C: [540,40,778,83,694], // LESS-THAN SIGN
|
67
|
+
0x3D: [367,-133,778,55,722], // EQUALS SIGN
|
68
|
+
0x3E: [540,40,778,82,694], // GREATER-THAN SIGN
|
69
|
+
0x3F: [706,-1,472,55,416], // QUESTION MARK
|
70
|
+
0x40: [705,11,778,56,722], // COMMERCIAL AT
|
71
|
+
0x41: [717,0,750,32,717], // LATIN CAPITAL LETTER A
|
72
|
+
0x42: [684,0,708,28,651], // LATIN CAPITAL LETTER B
|
73
|
+
0x43: [706,21,722,56,666], // LATIN CAPITAL LETTER C
|
74
|
+
0x44: [683,0,764,27,708], // LATIN CAPITAL LETTER D
|
75
|
+
0x45: [680,0,681,24,652], // LATIN CAPITAL LETTER E
|
76
|
+
0x46: [680,0,653,25,611], // LATIN CAPITAL LETTER F
|
77
|
+
0x47: [706,22,785,56,735], // LATIN CAPITAL LETTER G
|
78
|
+
0x48: [683,0,750,25,724], // LATIN CAPITAL LETTER H
|
79
|
+
0x49: [683,0,361,21,339], // LATIN CAPITAL LETTER I
|
80
|
+
0x4A: [683,22,514,25,465], // LATIN CAPITAL LETTER J
|
81
|
+
0x4B: [683,0,778,24,736], // LATIN CAPITAL LETTER K
|
82
|
+
0x4C: [683,0,625,25,582], // LATIN CAPITAL LETTER L
|
83
|
+
0x4D: [683,0,917,29,887], // LATIN CAPITAL LETTER M
|
84
|
+
0x4E: [683,0,750,25,724], // LATIN CAPITAL LETTER N
|
85
|
+
0x4F: [705,22,778,56,722], // LATIN CAPITAL LETTER O
|
86
|
+
0x50: [684,0,681,27,624], // LATIN CAPITAL LETTER P
|
87
|
+
0x51: [705,193,778,56,728], // LATIN CAPITAL LETTER Q
|
88
|
+
0x52: [684,22,736,27,732], // LATIN CAPITAL LETTER R
|
89
|
+
0x53: [706,23,556,55,500], // LATIN CAPITAL LETTER S
|
90
|
+
0x54: [677,0,722,36,685], // LATIN CAPITAL LETTER T
|
91
|
+
0x55: [684,22,750,25,724], // LATIN CAPITAL LETTER U
|
92
|
+
0x56: [683,23,750,19,730], // LATIN CAPITAL LETTER V
|
93
|
+
0x57: [683,23,1028,18,1009], // LATIN CAPITAL LETTER W
|
94
|
+
0x58: [683,1,750,23,727], // LATIN CAPITAL LETTER X
|
95
|
+
0x59: [684,0,750,11,738], // LATIN CAPITAL LETTER Y
|
96
|
+
0x5A: [683,1,611,55,560], // LATIN CAPITAL LETTER Z
|
97
|
+
0x5B: [750,250,278,118,255], // LEFT SQUARE BRACKET
|
98
|
+
0x5C: [750,250,500,56,444], // REVERSE SOLIDUS
|
99
|
+
0x5D: [750,250,278,22,159], // RIGHT SQUARE BRACKET
|
100
|
+
0x5E: [694,-531,500,112,387], // CIRCUMFLEX ACCENT
|
101
|
+
0x5F: [-25,62,500,0,499], // LOW LINE
|
102
|
+
0x60: [699,-505,500,106,295], // GRAVE ACCENT
|
103
|
+
0x61: [448,11,500,34,493], // LATIN SMALL LETTER A
|
104
|
+
0x62: [694,11,556,20,522], // LATIN SMALL LETTER B
|
105
|
+
0x63: [448,11,444,34,415], // LATIN SMALL LETTER C
|
106
|
+
0x64: [694,11,556,34,535], // LATIN SMALL LETTER D
|
107
|
+
0x65: [448,11,444,28,415], // LATIN SMALL LETTER E
|
108
|
+
0x66: [705,0,306,25,372], // LATIN SMALL LETTER F
|
109
|
+
0x67: [453,206,500,29,485], // LATIN SMALL LETTER G
|
110
|
+
0x68: [695,0,556,25,543], // LATIN SMALL LETTER H
|
111
|
+
0x69: [669,0,278,26,255], // LATIN SMALL LETTER I
|
112
|
+
0x6A: [669,205,306,-55,218], // LATIN SMALL LETTER J
|
113
|
+
0x6B: [695,0,528,20,512], // LATIN SMALL LETTER K
|
114
|
+
0x6C: [694,0,278,26,263], // LATIN SMALL LETTER L
|
115
|
+
0x6D: [443,0,833,25,820], // LATIN SMALL LETTER M
|
116
|
+
0x6E: [443,0,556,25,543], // LATIN SMALL LETTER N
|
117
|
+
0x6F: [448,10,500,28,471], // LATIN SMALL LETTER O
|
118
|
+
0x70: [443,194,556,20,522], // LATIN SMALL LETTER P
|
119
|
+
0x71: [442,194,528,33,535], // LATIN SMALL LETTER Q
|
120
|
+
0x72: [442,0,392,20,364], // LATIN SMALL LETTER R
|
121
|
+
0x73: [449,12,394,32,359], // LATIN SMALL LETTER S
|
122
|
+
0x74: [615,10,389,18,334], // LATIN SMALL LETTER T
|
123
|
+
0x75: [442,11,556,25,542], // LATIN SMALL LETTER U
|
124
|
+
0x76: [431,11,528,19,508], // LATIN SMALL LETTER V
|
125
|
+
0x77: [432,12,722,18,704], // LATIN SMALL LETTER W
|
126
|
+
0x78: [431,0,528,10,516], // LATIN SMALL LETTER X
|
127
|
+
0x79: [431,204,528,19,508], // LATIN SMALL LETTER Y
|
128
|
+
0x7A: [431,0,444,28,401], // LATIN SMALL LETTER Z
|
129
|
+
0x7B: [750,250,500,64,434], // LEFT CURLY BRACKET
|
130
|
+
0x7C: [750,250,278,119,159], // VERTICAL LINE
|
131
|
+
0x7D: [750,250,500,64,435], // RIGHT CURLY BRACKET
|
132
|
+
0x7E: [318,-215,500,83,416], // TILDE
|
133
|
+
0xA0: [0,0,250,0,0], // NO-BREAK SPACE
|
134
|
+
0xA8: [669,-554,500,95,404], // DIAERESIS
|
135
|
+
0xAC: [356,-89,667,55,611], // NOT SIGN
|
136
|
+
0xAF: [590,-544,500,69,430], // MACRON
|
137
|
+
0xB0: [715,-542,500,147,352], // DEGREE SIGN
|
138
|
+
0xB1: [666,0,778,55,722], // PLUS-MINUS SIGN
|
139
|
+
0xB4: [699,-505,500,203,393], // ACUTE ACCENT
|
140
|
+
0xD7: [491,-9,778,147,631], // MULTIPLICATION SIGN
|
141
|
+
0xF7: [537,36,778,55,721], // DIVISION SIGN
|
142
|
+
0x131: [442,0,278,26,255], // LATIN SMALL LETTER DOTLESS I
|
143
|
+
0x237: [442,205,306,-55,218], // LATIN SMALL LETTER DOTLESS J
|
144
|
+
0x2C6: [694,-531,500,112,387], // MODIFIER LETTER CIRCUMFLEX ACCENT
|
145
|
+
0x2C7: [644,-513,500,114,385], // CARON
|
146
|
+
0x2C9: [590,-544,500,69,430], // MODIFIER LETTER MACRON
|
147
|
+
0x2CA: [699,-505,500,203,393], // MODIFIER LETTER ACUTE ACCENT
|
148
|
+
0x2CB: [699,-505,500,106,295], // MODIFIER LETTER GRAVE ACCENT
|
149
|
+
0x2D8: [694,-515,500,92,407], // BREVE
|
150
|
+
0x2D9: [669,-549,500,190,309], // DOT ABOVE
|
151
|
+
0x2DC: [668,-565,500,83,416], // SMALL TILDE
|
152
|
+
0x393: [681,0,625,25,582], // GREEK CAPITAL LETTER GAMMA
|
153
|
+
0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA
|
154
|
+
0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA
|
155
|
+
0x39B: [717,0,694,32,661], // GREEK CAPITAL LETTER LAMDA
|
156
|
+
0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI
|
157
|
+
0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI
|
158
|
+
0x3A3: [683,1,722,55,666], // GREEK CAPITAL LETTER SIGMA
|
159
|
+
0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON
|
160
|
+
0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI
|
161
|
+
0x3A8: [683,0,778,54,722], // GREEK CAPITAL LETTER PSI
|
162
|
+
0x3A9: [704,1,722,44,677], // GREEK CAPITAL LETTER OMEGA
|
163
|
+
0x2002: [0,0,500,0,0], // ??
|
164
|
+
0x2003: [0,0,999,0,0], // ??
|
165
|
+
0x2004: [0,0,333,0,0], // ??
|
166
|
+
0x2005: [0,0,250,0,0], // ??
|
167
|
+
0x2006: [0,0,167,0,0], // ??
|
168
|
+
0x2009: [0,0,167,0,0], // ??
|
169
|
+
0x200A: [0,0,83,0,0], // ??
|
170
|
+
0x2013: [285,-248,500,0,499], // EN DASH
|
171
|
+
0x2014: [285,-248,1000,0,999], // EM DASH
|
172
|
+
0x2018: [694,-379,278,64,198], // LEFT SINGLE QUOTATION MARK
|
173
|
+
0x2019: [694,-379,278,78,212], // RIGHT SINGLE QUOTATION MARK
|
174
|
+
0x201C: [694,-379,500,128,466], // LEFT DOUBLE QUOTATION MARK
|
175
|
+
0x201D: [694,-379,500,34,372], // RIGHT DOUBLE QUOTATION MARK
|
176
|
+
0x2020: [705,217,444,55,390], // DAGGER
|
177
|
+
0x2021: [705,206,444,55,389], // DOUBLE DAGGER
|
178
|
+
0x2026: [120,0,1172,78,1093], // HORIZONTAL ELLIPSIS
|
179
|
+
0x2032: [560,-43,275,30,262], // PRIME
|
180
|
+
0x20D7: [714,-516,0,-471,-29], // COMBINING RIGHT ARROW ABOVE
|
181
|
+
0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi
|
182
|
+
0x2111: [705,11,722,54,693], // BLACK-LETTER CAPITAL I
|
183
|
+
0x2113: [706,20,417,6,398], // SCRIPT SMALL L
|
184
|
+
0x2118: [453,216,636,67,625], // SCRIPT CAPITAL P
|
185
|
+
0x211C: [717,22,722,40,716], // BLACK-LETTER CAPITAL R
|
186
|
+
0x2135: [694,1,611,54,556], // ALEF SYMBOL
|
187
|
+
0x2190: [511,12,1000,54,944], // LEFTWARDS ARROW
|
188
|
+
0x2191: [694,194,500,17,483], // UPWARDS ARROW
|
189
|
+
0x2192: [512,11,1000,55,945], // RIGHTWARDS ARROW
|
190
|
+
0x2193: [694,194,500,17,483], // DOWNWARDS ARROW
|
191
|
+
0x2194: [511,11,1000,55,945], // LEFT RIGHT ARROW
|
192
|
+
0x2195: [772,272,500,17,483], // UP DOWN ARROW
|
193
|
+
0x2196: [720,196,1000,29,944], // NORTH WEST ARROW
|
194
|
+
0x2197: [720,195,1000,55,970], // NORTH EAST ARROW
|
195
|
+
0x2198: [695,220,1000,55,970], // SOUTH EAST ARROW
|
196
|
+
0x2199: [695,220,1000,29,944], // SOUTH WEST ARROW
|
197
|
+
0x21A6: [512,11,1000,54,945], // RIGHTWARDS ARROW FROM BAR
|
198
|
+
0x21A9: [511,12,1126,54,1070], // LEFTWARDS ARROW WITH HOOK
|
199
|
+
0x21AA: [512,11,1126,55,1071], // RIGHTWARDS ARROW WITH HOOK
|
200
|
+
0x21BC: [511,-230,1000,55,944], // LEFTWARDS HARPOON WITH BARB UPWARDS
|
201
|
+
0x21BD: [270,11,1000,55,944], // LEFTWARDS HARPOON WITH BARB DOWNWARDS
|
202
|
+
0x21C0: [511,-230,1000,55,944], // RIGHTWARDS HARPOON WITH BARB UPWARDS
|
203
|
+
0x21C1: [270,11,1000,55,945], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS
|
204
|
+
0x21CC: [671,11,1000,55,944], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
|
205
|
+
0x21D0: [525,24,1000,55,944], // LEFTWARDS DOUBLE ARROW
|
206
|
+
0x21D1: [694,194,611,31,579], // UPWARDS DOUBLE ARROW
|
207
|
+
0x21D2: [525,25,1000,55,944], // RIGHTWARDS DOUBLE ARROW
|
208
|
+
0x21D3: [694,194,611,31,579], // DOWNWARDS DOUBLE ARROW
|
209
|
+
0x21D4: [525,25,1000,34,966], // LEFT RIGHT DOUBLE ARROW
|
210
|
+
0x21D5: [772,272,611,31,580], // UP DOWN DOUBLE ARROW
|
211
|
+
0x2200: [694,22,556,0,556], // FOR ALL
|
212
|
+
0x2202: [715,22,531,41,566], // PARTIAL DIFFERENTIAL
|
213
|
+
0x2203: [694,0,556,55,500], // THERE EXISTS
|
214
|
+
0x2205: [772,78,500,39,460], // EMPTY SET
|
215
|
+
0x2207: [683,33,833,46,786], // NABLA
|
216
|
+
0x2208: [541,41,667,84,584], // ELEMENT OF
|
217
|
+
0x2209: [716,215,667,84,584], // stix-negated (vert) set membership, variant
|
218
|
+
0x220B: [541,40,667,83,582], // CONTAINS AS MEMBER
|
219
|
+
0x2212: [270,-230,778,83,694], // MINUS SIGN
|
220
|
+
0x2213: [500,167,778,55,722], // MINUS-OR-PLUS SIGN
|
221
|
+
0x2215: [751,250,500,56,445], // DIVISION SLASH
|
222
|
+
0x2216: [750,250,500,56,444], // SET MINUS
|
223
|
+
0x2217: [465,-34,500,64,435], // ASTERISK OPERATOR
|
224
|
+
0x2218: [444,-55,500,55,444], // RING OPERATOR
|
225
|
+
0x2219: [444,-55,500,55,444], // BULLET OPERATOR
|
226
|
+
0x221A: [800,200,833,72,853], // SQUARE ROOT
|
227
|
+
0x221D: [442,11,778,56,722], // PROPORTIONAL TO
|
228
|
+
0x221E: [442,11,1000,55,944], // INFINITY
|
229
|
+
0x2220: [694,0,722,55,666], // ANGLE
|
230
|
+
0x2223: [750,250,278,119,159], // DIVIDES
|
231
|
+
0x2225: [750,250,500,132,367], // PARALLEL TO
|
232
|
+
0x2227: [598,22,667,55,611], // LOGICAL AND
|
233
|
+
0x2228: [598,22,667,55,611], // LOGICAL OR
|
234
|
+
0x2229: [598,22,667,55,611], // stix-intersection, serifs
|
235
|
+
0x222A: [599,22,667,55,611], // stix-union, serifs
|
236
|
+
0x222B: [716,216,417,55,472], // INTEGRAL
|
237
|
+
0x223C: [367,-133,778,55,722], // TILDE OPERATOR
|
238
|
+
0x2240: [583,83,278,55,222], // WREATH PRODUCT
|
239
|
+
0x2243: [464,-36,778,55,722], // ASYMPTOTICALLY EQUAL TO
|
240
|
+
0x2245: [589,-22,1000,55,722], // APPROXIMATELY EQUAL TO
|
241
|
+
0x2248: [483,-55,778,55,722], // ALMOST EQUAL TO
|
242
|
+
0x224D: [484,-16,778,55,722], // EQUIVALENT TO
|
243
|
+
0x2250: [670,-133,778,55,722], // APPROACHES THE LIMIT
|
244
|
+
0x2260: [716,215,778,55,722], // stix-not (vert) equals
|
245
|
+
0x2261: [464,-36,778,55,722], // IDENTICAL TO
|
246
|
+
0x2264: [636,138,778,83,694], // LESS-THAN OR EQUAL TO
|
247
|
+
0x2265: [636,138,778,82,694], // GREATER-THAN OR EQUAL TO
|
248
|
+
0x226A: [568,68,1000,56,944], // MUCH LESS-THAN
|
249
|
+
0x226B: [567,67,1000,55,945], // MUCH GREATER-THAN
|
250
|
+
0x227A: [539,41,778,84,695], // PRECEDES
|
251
|
+
0x227B: [539,41,778,83,694], // SUCCEEDS
|
252
|
+
0x2282: [540,41,778,84,695], // SUBSET OF
|
253
|
+
0x2283: [541,40,778,82,693], // SUPERSET OF
|
254
|
+
0x2286: [636,139,778,84,695], // SUBSET OF OR EQUAL TO
|
255
|
+
0x2287: [637,138,778,83,693], // SUPERSET OF OR EQUAL TO
|
256
|
+
0x228E: [599,22,667,55,611], // MULTISET UNION
|
257
|
+
0x2291: [636,138,778,83,714], // SQUARE IMAGE OF OR EQUAL TO
|
258
|
+
0x2292: [636,138,778,63,694], // SQUARE ORIGINAL OF OR EQUAL TO
|
259
|
+
0x2293: [598,0,667,61,605], // stix-square intersection, serifs
|
260
|
+
0x2294: [598,0,667,61,605], // stix-square union, serifs
|
261
|
+
0x2295: [583,83,778,56,722], // stix-circled plus (with rim)
|
262
|
+
0x2296: [583,83,778,56,722], // CIRCLED MINUS
|
263
|
+
0x2297: [583,83,778,56,722], // stix-circled times (with rim)
|
264
|
+
0x2298: [583,83,778,56,722], // CIRCLED DIVISION SLASH
|
265
|
+
0x2299: [583,83,778,56,722], // CIRCLED DOT OPERATOR
|
266
|
+
0x22A2: [694,0,611,55,555], // RIGHT TACK
|
267
|
+
0x22A3: [694,0,611,55,555], // LEFT TACK
|
268
|
+
0x22A4: [668,0,778,55,723], // DOWN TACK
|
269
|
+
0x22A5: [668,0,778,55,723], // UP TACK
|
270
|
+
0x22A8: [750,250,867,119,811], // TRUE
|
271
|
+
0x22C4: [488,-12,500,12,488], // DIAMOND OPERATOR
|
272
|
+
0x22C5: [310,-190,278,78,199], // DOT OPERATOR
|
273
|
+
0x22C6: [486,-16,500,3,497], // STAR OPERATOR
|
274
|
+
0x22C8: [505,6,900,25,873], // BOWTIE
|
275
|
+
0x22EE: [900,30,278,78,199], // VERTICAL ELLIPSIS
|
276
|
+
0x22EF: [310,-190,1172,78,1093], // MIDLINE HORIZONTAL ELLIPSIS
|
277
|
+
0x22F1: [820,-100,1282,133,1148], // DOWN RIGHT DIAGONAL ELLIPSIS
|
278
|
+
0x2308: [751,250,444,174,422], // LEFT CEILING
|
279
|
+
0x2309: [751,250,444,21,269], // RIGHT CEILING
|
280
|
+
0x230A: [750,251,444,174,422], // LEFT FLOOR
|
281
|
+
0x230B: [751,251,444,20,269], // RIGHT FLOOR
|
282
|
+
0x2322: [388,-122,1000,55,944], // stix-small down curve
|
283
|
+
0x2323: [378,-134,1000,55,944], // stix-small up curve
|
284
|
+
0x23B0: [744,245,412,55,357], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION
|
285
|
+
0x23B1: [745,244,412,55,357], // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION
|
286
|
+
0x27E8: [750,250,389,110,333], // MATHEMATICAL LEFT ANGLE BRACKET
|
287
|
+
0x27E9: [750,250,389,55,278], // MATHEMATICAL RIGHT ANGLE BRACKET
|
288
|
+
0x27EE: [744,245,412,173,357], // MATHEMATICAL LEFT FLATTENED PARENTHESIS
|
289
|
+
0x27EF: [744,245,412,55,240], // MATHEMATICAL RIGHT FLATTENED PARENTHESIS
|
290
|
+
0x27F5: [511,12,1609,54,1525], // LONG LEFTWARDS ARROW
|
291
|
+
0x27F6: [512,11,1638,83,1554], // LONG RIGHTWARDS ARROW
|
292
|
+
0x27F7: [512,12,1859,54,1804], // LONG LEFT RIGHT ARROW
|
293
|
+
0x27F8: [525,24,1609,55,1553], // LONG LEFTWARDS DOUBLE ARROW
|
294
|
+
0x27F9: [525,25,1638,55,1582], // LONG RIGHTWARDS DOUBLE ARROW
|
295
|
+
0x27FA: [525,24,1858,55,1802], // LONG LEFT RIGHT DOUBLE ARROW
|
296
|
+
0x27FC: [512,11,1638,54,1554], // LONG RIGHTWARDS ARROW FROM BAR
|
297
|
+
0x2A3F: [684,0,750,28,721], // AMALGAMATION OR COPRODUCT
|
298
|
+
0x2AAF: [636,138,778,83,695], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN
|
299
|
+
0x2AB0: [636,138,778,83,694] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN
|
300
|
+
};
|
301
|
+
|
302
|
+
MathJax.OutputJax["HTML-CSS"].initFont("MathJax_Main");
|
303
|
+
|
304
|
+
MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/Main.js");
|