123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */
- /* vim: set ts=2 et sw=2 tw=80: */
- /*************************************************************
- *
- * MathJax/jax/output/HTML-CSS/autoload/annotation-xm;l.js
- *
- * Implements the HTML-CSS output for <annotation-xml> elements.
- *
- * ---------------------------------------------------------------------
- *
- * Copyright (c) 2011-2017 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () {
- var VERSION = "2.7.2";
- var MML = MathJax.ElementJax.mml,
- HTMLCSS = MathJax.OutputJax["HTML-CSS"];
- MML["annotation-xml"].Augment({
- toHTML: function (span) {
- span = this.HTMLhandleSize(this.HTMLcreateSpan(span));
- var encoding = this.Get("encoding");
- for (var i = 0, m = this.data.length; i < m; i++)
- {this.data[i].toHTML(span,encoding)}
- this.HTMLhandleSpace(span);
- this.HTMLhandleColor(span);
- return span;
- },
- HTMLgetScale: function () {
- return this.SUPER(arguments).HTMLgetScale.call(this) / HTMLCSS.scale;
- }
- });
-
- MML.xml.Augment({
- toHTML: function (span,encoding) {
- for (var i = 0, m = this.data.length; i < m; i++)
- {span.appendChild(this.data[i].cloneNode(true))}
- var bbox = span.bbox; span.bbox = null;
- bbox.rw = bbox.w = HTMLCSS.getW(span);
- var HD = HTMLCSS.getHD(span);
- bbox.h = HD.h; bbox.d = HD.d;
- span.bbox = bbox;
- }
- });
-
- MathJax.Hub.Startup.signal.Post("HTML-CSS annotation-xml Ready");
- MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/annotation-xml.js");
- });
|