ms.js (2124B)
1 /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ 2 /* vim: set ts=2 et sw=2 tw=80: */ 3 4 /************************************************************* 5 * 6 * MathJax/jax/output/HTML-CSS/autoload/ms.js 7 * 8 * Implements the HTML-CSS output for <ms> elements. 9 * 10 * --------------------------------------------------------------------- 11 * 12 * Copyright (c) 2010-2015 The MathJax Consortium 13 * 14 * Licensed under the Apache License, Version 2.0 (the "License"); 15 * you may not use this file except in compliance with the License. 16 * You may obtain a copy of the License at 17 * 18 * http://www.apache.org/licenses/LICENSE-2.0 19 * 20 * Unless required by applicable law or agreed to in writing, software 21 * distributed under the License is distributed on an "AS IS" BASIS, 22 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 23 * See the License for the specific language governing permissions and 24 * limitations under the License. 25 */ 26 27 MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { 28 var VERSION = "2.6.0"; 29 var MML = MathJax.ElementJax.mml, 30 HTMLCSS = MathJax.OutputJax["HTML-CSS"]; 31 32 MML.ms.Augment({ 33 toHTML: function (span) { 34 span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); 35 var values = this.getValues("lquote","rquote","mathvariant"); 36 if (!this.hasValue("lquote") || values.lquote === '"') values.lquote = "\u201C"; 37 if (!this.hasValue("rquote") || values.rquote === '"') values.rquote = "\u201D"; 38 if (values.lquote === "\u201C" && values.mathvariant === "monospace") values.lquote = '"'; 39 if (values.rquote === "\u201D" && values.mathvariant === "monospace") values.rquote = '"'; 40 var text = values.lquote+this.data.join("")+values.rquote; // FIXME: handle mglyph? 41 this.HTMLhandleVariant(span,this.HTMLgetVariant(),text); 42 this.HTMLhandleSpace(span); 43 this.HTMLhandleColor(span); 44 this.HTMLhandleDir(span); 45 return span; 46 } 47 }); 48 49 MathJax.Hub.Startup.signal.Post("HTML-CSS ms Ready"); 50 MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/ms.js"); 51 52 }); 53