www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 70ea836047c3d655526d7398178ae1fa9ea73480
parent cfa168e64282ddb8d28bb4d4789a12bbf5d38644
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Wed, 15 Feb 2012 11:10:34 -0500

Fix the AsciiMath block name in default.js, and fix a number of comments in extensions

Diffstat:
Mconfig/default.js | 8++++----
Munpacked/config/default.js | 8++++----
Munpacked/extensions/TeX/cancel.js | 2+-
Munpacked/extensions/TeX/extpfeil.js | 2+-
Munpacked/extensions/TeX/noErrors.js | 7++++---
5 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/config/default.js b/config/default.js @@ -560,9 +560,9 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the AsciiMath inupt jax. + // These parameters control the AsciiMath input jax. // - AasciiMath: { + AsciiMath: { // // Determines whether limits are placed above and below operators, // or next to them. (AsciiMath doesn't have separate in-line and @@ -573,7 +573,7 @@ MathJax.Hub.Config({ // // The character to use for decimal places when scanning for a number. - // If you change it to ,, beware of things like "(1,2)" which would need + // If you change it to ",", beware of things like "(1,2)" which would need // to be changed to "(1, 2)" to be parsed correctly. // decimal: "." @@ -581,7 +581,7 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the MathML inupt jax. + // These parameters control the MathML input jax. // MathML: { // diff --git a/unpacked/config/default.js b/unpacked/config/default.js @@ -560,9 +560,9 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the AsciiMath inupt jax. + // These parameters control the AsciiMath input jax. // - AasciiMath: { + AsciiMath: { // // Determines whether limits are placed above and below operators, // or next to them. (AsciiMath doesn't have separate in-line and @@ -573,7 +573,7 @@ MathJax.Hub.Config({ // // The character to use for decimal places when scanning for a number. - // If you change it to ,, beware of things like "(1,2)" which would need + // If you change it to ",", beware of things like "(1,2)" which would need // to be changed to "(1, 2)" to be parsed correctly. // decimal: "." @@ -581,7 +581,7 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the MathML inupt jax. + // These parameters control the MathML input jax. // MathML: { // diff --git a/unpacked/extensions/TeX/cancel.js b/unpacked/extensions/TeX/cancel.js @@ -8,7 +8,7 @@ * * \cancel{math} % strikeout math from lower left to upper right * \bcancel{math} % strikeout from upper left to lower right - * \xcancel{math} % strikout with an X + * \xcancel{math} % strikeout with an X * \cancelto{value}{math} % strikeout with arrow going to value * * --------------------------------------------------------------------- diff --git a/unpacked/extensions/TeX/extpfeil.js b/unpacked/extensions/TeX/extpfeil.js @@ -67,7 +67,7 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { // TEX.Parse.Augment({ NewExtArrow: function (name) { - var cs = this.GetArgument(name), + var cs = this.GetArgument(name), space = this.GetArgument(name), chr = this.GetArgument(name); if (!cs.match(/^\\([a-z]+|.)$/i)) diff --git a/unpacked/extensions/TeX/noErrors.js b/unpacked/extensions/TeX/noErrors.js @@ -15,10 +15,11 @@ * inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] * multiLine: true, // false for TeX on all one line * style: { - * "font-family": "serif", - * "font-size": "80%", + * "font-size": "90%", + * "text-align": "left", * "color": "black", - * "border": "1px solid" + * "padding": "1px 3px", + * "border": "1px solid" * // add any additional CSS styles that you want * // (be sure there is no extra comma at the end of the last item) * }