mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-10 21:48:41 +00:00
* Support {CD} * Edit screenshotter test to fit on one page * Update screenshots * Remove bogus Safari screenshot * Edit documentation to avoid tag conflicts and explain delimiters * Add type annotations * Add bogus safari screenshot * Update with real Safari screenshot * Set label vertical alignment * Revise call to parseExpression() per PR 2085 changes to macro parsing * Update Firefox screenshot * Pick up review comments * Add unit tests and snapshot. * Tighten up label collection. * Better loop index * remove extra space * Picked up comments. Added a parse check. Added a test. Co-authored-by: ylemkimon <y@ylem.kim> Co-authored-by: Kevin Barabash <kevinb@khanacademy.org> Co-authored-by: Kevin Barabash <kevinb7@gmail.com>
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
// @flow
|
|
/** Include this to ensure that all functions are defined. */
|
|
import {_functions} from "./defineFunction";
|
|
|
|
const functions = _functions;
|
|
export default functions;
|
|
|
|
// TODO(kevinb): have functions return an object and call defineFunction with
|
|
// that object in this file instead of relying on side-effects.
|
|
import "./functions/accent";
|
|
import "./functions/accentunder";
|
|
import "./functions/arrow";
|
|
import "./environments/cd";
|
|
import "./functions/char";
|
|
import "./functions/color";
|
|
import "./functions/cr";
|
|
import "./functions/def";
|
|
import "./functions/delimsizing";
|
|
import "./functions/enclose";
|
|
import "./functions/environment";
|
|
import "./functions/font";
|
|
import "./functions/genfrac";
|
|
import "./functions/horizBrace";
|
|
import "./functions/href";
|
|
import "./functions/hbox";
|
|
import "./functions/html";
|
|
import "./functions/htmlmathml";
|
|
import "./functions/includegraphics";
|
|
import "./functions/kern";
|
|
import "./functions/lap";
|
|
import "./functions/math";
|
|
import "./functions/mathchoice";
|
|
import "./functions/mclass";
|
|
import "./functions/op";
|
|
import "./functions/operatorname";
|
|
import "./functions/ordgroup";
|
|
import "./functions/overline";
|
|
import "./functions/phantom";
|
|
import "./functions/raisebox";
|
|
import "./functions/rule";
|
|
import "./functions/sizing";
|
|
import "./functions/smash";
|
|
import "./functions/sqrt";
|
|
import "./functions/styling";
|
|
import "./functions/supsub";
|
|
import "./functions/symbolsOp";
|
|
import "./functions/symbolsOrd";
|
|
import "./functions/symbolsSpacing";
|
|
import "./functions/tag";
|
|
import "./functions/text";
|
|
import "./functions/underline";
|
|
import "./functions/vcenter";
|
|
import "./functions/verb";
|