ba72cc1b29
These settings do not need to exist in GlobalSettings because they are actually constants in upstream Org-Mode.
477 lines
53 KiB
Rust
477 lines
53 KiB
Rust
use super::global_settings::EntityDefinition;
|
||
|
||
/// Keywords that contain the standard set of objects (excluding footnote references).
|
||
///
|
||
/// Corresponds to org-element-parsed-keywords elisp variable.
|
||
pub(crate) const ORG_ELEMENT_PARSED_KEYWORDS: [&str; 1] = ["CAPTION"];
|
||
|
||
/// Keywords that can have a secondary value in square brackets.
|
||
///
|
||
/// Corresponds to org-element-dual-keywords elisp variable.
|
||
pub(crate) const ORG_ELEMENT_DUAL_KEYWORDS: [&str; 2] = ["CAPTION", "RESULTS"];
|
||
|
||
/// Keywords that can be affiliated with an element.
|
||
///
|
||
/// Corresponds to org-element-affiliated-keywords elisp variable.
|
||
pub(crate) const ORG_ELEMENT_AFFILIATED_KEYWORDS: [&str; 13] = [
|
||
"CAPTION", "DATA", "HEADER", "HEADERS", "LABEL", "NAME", "PLOT", "RESNAME", "RESULT",
|
||
"RESULTS", "SOURCE", "SRCNAME", "TBLNAME",
|
||
];
|
||
|
||
/// Mapping of keyword names.
|
||
///
|
||
/// Corresponds to org-element-keyword-translation-alist elisp variable.
|
||
pub(crate) const ORG_ELEMENT_KEYWORD_TRANSLATION_ALIST: [(&str, &str); 8] = [
|
||
("DATA", "NAME"),
|
||
("LABEL", "NAME"),
|
||
("RESNAME", "NAME"),
|
||
("SOURCE", "NAME"),
|
||
("SRCNAME", "NAME"),
|
||
("TBLNAME", "NAME"),
|
||
("RESULT", "RESULTS"),
|
||
("HEADERS", "HEADER"),
|
||
];
|
||
|
||
pub(crate) const DEFAULT_ORG_LINK_PARAMETERS: [&str; 23] = [
|
||
"id",
|
||
"eww",
|
||
"rmail",
|
||
"mhe",
|
||
"irc",
|
||
"info",
|
||
"gnus",
|
||
"docview",
|
||
"bibtex",
|
||
"bbdb",
|
||
"w3m",
|
||
"doi",
|
||
"file+sys",
|
||
"file+emacs",
|
||
"shell",
|
||
"news",
|
||
"mailto",
|
||
"https",
|
||
"http",
|
||
"ftp",
|
||
"help",
|
||
"file",
|
||
"elisp",
|
||
];
|
||
|
||
pub(crate) const DEFAULT_ORG_ENTITIES: [EntityDefinition<'static>; 414] = [
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{10.0em}", html: "                    ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{9.5em}", html: "                   ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{9.0em}", html: "                  ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{8.5em}", html: "                 ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{8.0em}", html: "                ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{7.5em}", html: "               ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{7.0em}", html: "              ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "leftrightarrow", latex_math_mode: true, latex: "\\leftrightarrow", html: "↔", ascii: "<->", utf8: "↔"},
|
||
EntityDefinition {name: "Leftrightarrow", latex_math_mode: true, latex: "\\Leftrightarrow", html: "⇔", ascii: "<=>", utf8: "⇔"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{6.5em}", html: "             ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "hookleftarrow", latex_math_mode: true, latex: "\\hookleftarrow", html: "↵", ascii: "<-'", utf8: "↵"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{6.0em}", html: "            ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{5.5em}", html: "           ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "preccurlyeq", latex_math_mode: true, latex: "\\preccurlyeq", html: "≼", ascii: "[precedes or equal]", utf8: "≼"},
|
||
EntityDefinition {name: "succcurlyeq", latex_math_mode: true, latex: "\\succcurlyeq", html: "≽", ascii: "[succeeds or equal]", utf8: "≽"},
|
||
EntityDefinition {name: "diamondsuit", latex_math_mode: true, latex: "\\diamondsuit", html: "♦", ascii: "[diamonds]", utf8: "◆"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{5.0em}", html: "          ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "varepsilon", latex_math_mode: true, latex: "\\varepsilon", html: "ε", ascii: "varepsilon", utf8: "ε"},
|
||
EntityDefinition {name: "rightarrow", latex_math_mode: true, latex: "\\rightarrow", html: "→", ascii: "->", utf8: "→"},
|
||
EntityDefinition {name: "Rightarrow", latex_math_mode: true, latex: "\\Rightarrow", html: "⇒", ascii: "=>", utf8: "⇒"},
|
||
EntityDefinition {name: "blacksmile", latex_math_mode: true, latex: "\\ddot\\smile", html: "☻", ascii: ":-)", utf8: "☻"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{4.5em}", html: "         ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "asciicirc", latex_math_mode: false, latex: "\\textasciicircum{}", html: "^", ascii: "^", utf8: "^"},
|
||
EntityDefinition {name: "therefore", latex_math_mode: true, latex: "\\therefore", html: "∴", ascii: "[therefore]", utf8: "∴"},
|
||
EntityDefinition {name: "triangleq", latex_math_mode: true, latex: "\\triangleq", html: "≜", ascii: "[defined to]", utf8: "≜"},
|
||
EntityDefinition {name: "lesseqgtr", latex_math_mode: true, latex: "\\lesseqgtr", html: "⋚", ascii: "[less than or equal or greater than or equal]", utf8: "⋚"},
|
||
EntityDefinition {name: "leftarrow", latex_math_mode: true, latex: "\\leftarrow", html: "←", ascii: "<-", utf8: "←"},
|
||
EntityDefinition {name: "Leftarrow", latex_math_mode: true, latex: "\\Leftarrow", html: "⇐", ascii: "<=", utf8: "⇐"},
|
||
EntityDefinition {name: "downarrow", latex_math_mode: true, latex: "\\downarrow", html: "↓", ascii: "[downarrow]", utf8: "↓"},
|
||
EntityDefinition {name: "Downarrow", latex_math_mode: true, latex: "\\Downarrow", html: "⇓", ascii: "[dbldownarrow]", utf8: "⇓"},
|
||
EntityDefinition {name: "checkmark", latex_math_mode: true, latex: "\\checkmark", html: "✓", ascii: "[checkmark]", utf8: "✓"},
|
||
EntityDefinition {name: "spadesuit", latex_math_mode: true, latex: "\\spadesuit", html: "♠", ascii: "[spades]", utf8: "♠"},
|
||
EntityDefinition {name: "heartsuit", latex_math_mode: true, latex: "\\heartsuit", html: "♥", ascii: "[hearts]", utf8: "♥"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{4.0em}", html: "        ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "thetasym", latex_math_mode: true, latex: "\\vartheta", html: "ϑ", ascii: "theta", utf8: "ϑ"},
|
||
EntityDefinition {name: "vartheta", latex_math_mode: true, latex: "\\vartheta", html: "ϑ", ascii: "theta", utf8: "ϑ"},
|
||
EntityDefinition {name: "varsigma", latex_math_mode: true, latex: "\\varsigma", html: "ς", ascii: "varsigma", utf8: "ς"},
|
||
EntityDefinition {name: "setminus", latex_math_mode: true, latex: "\\setminus", html: "∖", ascii: "\" ", utf8: "⧵"},
|
||
EntityDefinition {name: "emptyset", latex_math_mode: true, latex: "\\emptyset", html: "∅", ascii: "[empty set]", utf8: "∅"},
|
||
EntityDefinition {name: "parallel", latex_math_mode: true, latex: "\\parallel", html: "∥", ascii: "||", utf8: "∥"},
|
||
EntityDefinition {name: "clubsuit", latex_math_mode: true, latex: "\\clubsuit", html: "♣", ascii: "[clubs]", utf8: "♣"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{3.5em}", html: "       ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "Epsilon", latex_math_mode: false, latex: "E", html: "Ε", ascii: "Epsilon", utf8: "Ε"},
|
||
EntityDefinition {name: "epsilon", latex_math_mode: true, latex: "\\epsilon", html: "ε", ascii: "epsilon", utf8: "ε"},
|
||
EntityDefinition {name: "Omicron", latex_math_mode: false, latex: "O", html: "Ο", ascii: "Omicron", utf8: "Ο"},
|
||
EntityDefinition {name: "omicron", latex_math_mode: false, latex: "\\textit{o}", html: "ο", ascii: "omicron", utf8: "ο"},
|
||
EntityDefinition {name: "Upsilon", latex_math_mode: true, latex: "\\Upsilon", html: "Υ", ascii: "Upsilon", utf8: "Υ"},
|
||
EntityDefinition {name: "upsilon", latex_math_mode: true, latex: "\\upsilon", html: "υ", ascii: "upsilon", utf8: "υ"},
|
||
EntityDefinition {name: "partial", latex_math_mode: true, latex: "\\partial", html: "∂", ascii: "[partial differential]", utf8: "∂"},
|
||
EntityDefinition {name: "alefsym", latex_math_mode: true, latex: "\\aleph", html: "ℵ", ascii: "aleph", utf8: "ℵ"},
|
||
EntityDefinition {name: "because", latex_math_mode: true, latex: "\\because", html: "∵", ascii: "[because]", utf8: "∵"},
|
||
EntityDefinition {name: "lessgtr", latex_math_mode: true, latex: "\\lessgtr", html: "≶", ascii: "[less than or greater than]", utf8: "≶"},
|
||
EntityDefinition {name: "nexists", latex_math_mode: true, latex: "\\nexists", html: "∃", ascii: "[there does not exists]", utf8: "∄"},
|
||
EntityDefinition {name: "uparrow", latex_math_mode: true, latex: "\\uparrow", html: "↑", ascii: "[uparrow]", utf8: "↑"},
|
||
EntityDefinition {name: "Uparrow", latex_math_mode: true, latex: "\\Uparrow", html: "⇑", ascii: "[dbluparrow]", utf8: "⇑"},
|
||
EntityDefinition {name: "diamond", latex_math_mode: true, latex: "\\diamondsuit", html: "⋄", ascii: "[diamond]", utf8: "◆"},
|
||
EntityDefinition {name: "Diamond", latex_math_mode: true, latex: "\\diamondsuit", html: "⋄", ascii: "[diamond]", utf8: "◆"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{3.0em}", html: "      ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "Agrave", latex_math_mode: false, latex: "\\`{A}", html: "À", ascii: "A", utf8: "À"},
|
||
EntityDefinition {name: "agrave", latex_math_mode: false, latex: "\\`{a}", html: "à", ascii: "a", utf8: "à"},
|
||
EntityDefinition {name: "Aacute", latex_math_mode: false, latex: "\\'{A}", html: "Á", ascii: "A", utf8: "Á"},
|
||
EntityDefinition {name: "aacute", latex_math_mode: false, latex: "\\'{a}", html: "á", ascii: "a", utf8: "á"},
|
||
EntityDefinition {name: "Atilde", latex_math_mode: false, latex: "\\~{A}", html: "Ã", ascii: "A", utf8: "Ã"},
|
||
EntityDefinition {name: "atilde", latex_math_mode: false, latex: "\\~{a}", html: "ã", ascii: "a", utf8: "ã"},
|
||
EntityDefinition {name: "Ccedil", latex_math_mode: false, latex: "\\c{C}", html: "Ç", ascii: "C", utf8: "Ç"},
|
||
EntityDefinition {name: "ccedil", latex_math_mode: false, latex: "\\c{c}", html: "ç", ascii: "c", utf8: "ç"},
|
||
EntityDefinition {name: "Egrave", latex_math_mode: false, latex: "\\`{E}", html: "È", ascii: "E", utf8: "È"},
|
||
EntityDefinition {name: "egrave", latex_math_mode: false, latex: "\\`{e}", html: "è", ascii: "e", utf8: "è"},
|
||
EntityDefinition {name: "Eacute", latex_math_mode: false, latex: "\\'{E}", html: "É", ascii: "E", utf8: "É"},
|
||
EntityDefinition {name: "eacute", latex_math_mode: false, latex: "\\'{e}", html: "é", ascii: "e", utf8: "é"},
|
||
EntityDefinition {name: "Igrave", latex_math_mode: false, latex: "\\`{I}", html: "Ì", ascii: "I", utf8: "Ì"},
|
||
EntityDefinition {name: "igrave", latex_math_mode: false, latex: "\\`{i}", html: "ì", ascii: "i", utf8: "ì"},
|
||
EntityDefinition {name: "Iacute", latex_math_mode: false, latex: "\\'{I}", html: "Í", ascii: "I", utf8: "Í"},
|
||
EntityDefinition {name: "iacute", latex_math_mode: false, latex: "\\'{i}", html: "í", ascii: "i", utf8: "í"},
|
||
EntityDefinition {name: "inodot", latex_math_mode: false, latex: "\\i", html: "ı", ascii: "i", utf8: "ı"},
|
||
EntityDefinition {name: "Ntilde", latex_math_mode: false, latex: "\\~{N}", html: "Ñ", ascii: "N", utf8: "Ñ"},
|
||
EntityDefinition {name: "ntilde", latex_math_mode: false, latex: "\\~{n}", html: "ñ", ascii: "n", utf8: "ñ"},
|
||
EntityDefinition {name: "Ograve", latex_math_mode: false, latex: "\\`{O}", html: "Ò", ascii: "O", utf8: "Ò"},
|
||
EntityDefinition {name: "ograve", latex_math_mode: false, latex: "\\`{o}", html: "ò", ascii: "o", utf8: "ò"},
|
||
EntityDefinition {name: "Oacute", latex_math_mode: false, latex: "\\'{O}", html: "Ó", ascii: "O", utf8: "Ó"},
|
||
EntityDefinition {name: "oacute", latex_math_mode: false, latex: "\\'{o}", html: "ó", ascii: "o", utf8: "ó"},
|
||
EntityDefinition {name: "Otilde", latex_math_mode: false, latex: "\\~{O}", html: "Õ", ascii: "O", utf8: "Õ"},
|
||
EntityDefinition {name: "otilde", latex_math_mode: false, latex: "\\~{o}", html: "õ", ascii: "o", utf8: "õ"},
|
||
EntityDefinition {name: "Oslash", latex_math_mode: false, latex: "\\O", html: "Ø", ascii: "O", utf8: "Ø"},
|
||
EntityDefinition {name: "oslash", latex_math_mode: false, latex: "\\o{}", html: "ø", ascii: "o", utf8: "ø"},
|
||
EntityDefinition {name: "Scaron", latex_math_mode: false, latex: "\\v{S}", html: "Š", ascii: "S", utf8: "Š"},
|
||
EntityDefinition {name: "scaron", latex_math_mode: false, latex: "\\v{s}", html: "š", ascii: "s", utf8: "š"},
|
||
EntityDefinition {name: "Ugrave", latex_math_mode: false, latex: "\\`{U}", html: "Ù", ascii: "U", utf8: "Ù"},
|
||
EntityDefinition {name: "ugrave", latex_math_mode: false, latex: "\\`{u}", html: "ù", ascii: "u", utf8: "ù"},
|
||
EntityDefinition {name: "Uacute", latex_math_mode: false, latex: "\\'{U}", html: "Ú", ascii: "U", utf8: "Ú"},
|
||
EntityDefinition {name: "uacute", latex_math_mode: false, latex: "\\'{u}", html: "ú", ascii: "u", utf8: "ú"},
|
||
EntityDefinition {name: "Yacute", latex_math_mode: false, latex: "\\'{Y}", html: "Ý", ascii: "Y", utf8: "Ý"},
|
||
EntityDefinition {name: "yacute", latex_math_mode: false, latex: "\\'{y}", html: "ý", ascii: "y", utf8: "ý"},
|
||
EntityDefinition {name: "weierp", latex_math_mode: true, latex: "\\wp", html: "℘", ascii: "P", utf8: "℘"},
|
||
EntityDefinition {name: "Lambda", latex_math_mode: true, latex: "\\Lambda", html: "Λ", ascii: "Lambda", utf8: "Λ"},
|
||
EntityDefinition {name: "lambda", latex_math_mode: true, latex: "\\lambda", html: "λ", ascii: "lambda", utf8: "λ"},
|
||
EntityDefinition {name: "sigmaf", latex_math_mode: true, latex: "\\varsigma", html: "ς", ascii: "sigmaf", utf8: "ς"},
|
||
EntityDefinition {name: "varphi", latex_math_mode: true, latex: "\\varphi", html: "ϕ", ascii: "varphi", utf8: "φ"},
|
||
EntityDefinition {name: "acutex", latex_math_mode: true, latex: "\\acute x", html: "´x", ascii: "'x", utf8: "𝑥́"},
|
||
EntityDefinition {name: "hellip", latex_math_mode: false, latex: "\\dots{}", html: "…", ascii: "...", utf8: "…"},
|
||
EntityDefinition {name: "middot", latex_math_mode: false, latex: "\\textperiodcentered{}", html: "·", ascii: ".", utf8: "·"},
|
||
EntityDefinition {name: "iquest", latex_math_mode: false, latex: "?`", html: "¿", ascii: "?", utf8: "¿"},
|
||
EntityDefinition {name: "lsaquo", latex_math_mode: false, latex: "\\guilsinglleft{}", html: "‹", ascii: "<", utf8: "‹"},
|
||
EntityDefinition {name: "rsaquo", latex_math_mode: false, latex: "\\guilsinglright{}", html: "›", ascii: ">", utf8: "›"},
|
||
EntityDefinition {name: "brvbar", latex_math_mode: false, latex: "\\textbrokenbar{}", html: "¦", ascii: "|", utf8: "¦"},
|
||
EntityDefinition {name: "dagger", latex_math_mode: false, latex: "\\textdagger{}", html: "†", ascii: "[dagger]", utf8: "†"},
|
||
EntityDefinition {name: "Dagger", latex_math_mode: false, latex: "\\textdaggerdbl{}", html: "‡", ascii: "[doubledagger]", utf8: "‡"},
|
||
EntityDefinition {name: "thinsp", latex_math_mode: false, latex: "\\hspace*{.2em}", html: " ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "curren", latex_math_mode: false, latex: "\\textcurrency{}", html: "¤", ascii: "curr.", utf8: "¤"},
|
||
EntityDefinition {name: "dollar", latex_math_mode: false, latex: "\\$", html: "$", ascii: "$", utf8: "$"},
|
||
EntityDefinition {name: "plusmn", latex_math_mode: false, latex: "\\textpm{}", html: "±", ascii: "+-", utf8: "±"},
|
||
EntityDefinition {name: "frac12", latex_math_mode: false, latex: "\\textonehalf{}", html: "½", ascii: "1/2", utf8: "½"},
|
||
EntityDefinition {name: "frac14", latex_math_mode: false, latex: "\\textonequarter{}", html: "¼", ascii: "1/4", utf8: "¼"},
|
||
EntityDefinition {name: "frac34", latex_math_mode: false, latex: "\\textthreequarters{}", html: "¾", ascii: "3/4", utf8: "¾"},
|
||
EntityDefinition {name: "permil", latex_math_mode: false, latex: "\\textperthousand{}", html: "‰", ascii: "per thousand", utf8: "‰"},
|
||
EntityDefinition {name: "propto", latex_math_mode: true, latex: "\\propto", html: "∝", ascii: "[proportional to]", utf8: "∝"},
|
||
EntityDefinition {name: "there4", latex_math_mode: true, latex: "\\therefore", html: "∴", ascii: "[therefore]", utf8: "∴"},
|
||
EntityDefinition {name: "approx", latex_math_mode: true, latex: "\\approx", html: "≈", ascii: "[almost equal to]", utf8: "≈"},
|
||
EntityDefinition {name: "preceq", latex_math_mode: true, latex: "\\preceq", html: "≼", ascii: "[precedes or equal]", utf8: "≼"},
|
||
EntityDefinition {name: "succeq", latex_math_mode: true, latex: "\\succeq", html: "≽", ascii: "[succeeds or equal]", utf8: "≽"},
|
||
EntityDefinition {name: "subset", latex_math_mode: true, latex: "\\subset", html: "⊂", ascii: "[subset of]", utf8: "⊂"},
|
||
EntityDefinition {name: "supset", latex_math_mode: true, latex: "\\supset", html: "⊃", ascii: "[superset of]", utf8: "⊃"},
|
||
EntityDefinition {name: "forall", latex_math_mode: true, latex: "\\forall", html: "∀", ascii: "[for all]", utf8: "∀"},
|
||
EntityDefinition {name: "exists", latex_math_mode: true, latex: "\\exists", html: "∃", ascii: "[there exists]", utf8: "∃"},
|
||
EntityDefinition {name: "nexist", latex_math_mode: true, latex: "\\nexists", html: "∃", ascii: "[there does not exists]", utf8: "∄"},
|
||
EntityDefinition {name: "lfloor", latex_math_mode: true, latex: "\\lfloor", html: "⌊", ascii: "[left floor]", utf8: "⌊"},
|
||
EntityDefinition {name: "rfloor", latex_math_mode: true, latex: "\\rfloor", html: "⌋", ascii: "[right floor]", utf8: "⌋"},
|
||
EntityDefinition {name: "langle", latex_math_mode: true, latex: "\\langle", html: "⟨", ascii: "<", utf8: "⟨"},
|
||
EntityDefinition {name: "rangle", latex_math_mode: true, latex: "\\rangle", html: "⟩", ascii: ">", utf8: "⟩"},
|
||
EntityDefinition {name: "arccos", latex_math_mode: true, latex: "\\arccos", html: "arccos", ascii: "arccos", utf8: "arccos"},
|
||
EntityDefinition {name: "arcsin", latex_math_mode: true, latex: "\\arcsin", html: "arcsin", ascii: "arcsin", utf8: "arcsin"},
|
||
EntityDefinition {name: "arctan", latex_math_mode: true, latex: "\\arctan", html: "arctan", ascii: "arctan", utf8: "arctan"},
|
||
EntityDefinition {name: "liminf", latex_math_mode: true, latex: "\\liminf", html: "liminf", ascii: "liminf", utf8: "liminf"},
|
||
EntityDefinition {name: "limsup", latex_math_mode: true, latex: "\\limsup", html: "limsup", ascii: "limsup", utf8: "limsup"},
|
||
EntityDefinition {name: "bullet", latex_math_mode: false, latex: "\\textbullet{}", html: "•", ascii: "*", utf8: "•"},
|
||
EntityDefinition {name: "lowast", latex_math_mode: true, latex: "\\ast", html: "∗", ascii: "*", utf8: "∗"},
|
||
EntityDefinition {name: "otimes", latex_math_mode: true, latex: "\\otimes", html: "⊗", ascii: "[circled times]", utf8: "⊗"},
|
||
EntityDefinition {name: "smiley", latex_math_mode: true, latex: "\\ddot\\smile", html: "☺", ascii: ":-)", utf8: "☺"},
|
||
EntityDefinition {name: "frowny", latex_math_mode: true, latex: "\\ddot\\frown", html: "☹", ascii: ":-(", utf8: "☹"},
|
||
EntityDefinition {name: "spades", latex_math_mode: true, latex: "\\spadesuit", html: "♠", ascii: "[spades]", utf8: "♠"},
|
||
EntityDefinition {name: "hearts", latex_math_mode: true, latex: "\\heartsuit", html: "♥", ascii: "[hearts]", utf8: "♥"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{2.5em}", html: "     ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "Acirc", latex_math_mode: false, latex: "\\^{A}", html: "Â", ascii: "A", utf8: "Â"},
|
||
EntityDefinition {name: "acirc", latex_math_mode: false, latex: "\\^{a}", html: "â", ascii: "a", utf8: "â"},
|
||
EntityDefinition {name: "Amacr", latex_math_mode: false, latex: "\\={A}", html: "Ā", ascii: "A", utf8: "Ã"},
|
||
EntityDefinition {name: "amacr", latex_math_mode: false, latex: "\\={a}", html: "ā", ascii: "a", utf8: "ã"},
|
||
EntityDefinition {name: "Aring", latex_math_mode: false, latex: "\\AA{}", html: "Å", ascii: "A", utf8: "Å"},
|
||
EntityDefinition {name: "aring", latex_math_mode: false, latex: "\\aa{}", html: "å", ascii: "a", utf8: "å"},
|
||
EntityDefinition {name: "AElig", latex_math_mode: false, latex: "\\AE{}", html: "Æ", ascii: "AE", utf8: "Æ"},
|
||
EntityDefinition {name: "aelig", latex_math_mode: false, latex: "\\ae{}", html: "æ", ascii: "ae", utf8: "æ"},
|
||
EntityDefinition {name: "Ecirc", latex_math_mode: false, latex: "\\^{E}", html: "Ê", ascii: "E", utf8: "Ê"},
|
||
EntityDefinition {name: "ecirc", latex_math_mode: false, latex: "\\^{e}", html: "ê", ascii: "e", utf8: "ê"},
|
||
EntityDefinition {name: "Icirc", latex_math_mode: false, latex: "\\^{I}", html: "Î", ascii: "I", utf8: "Î"},
|
||
EntityDefinition {name: "icirc", latex_math_mode: false, latex: "\\^{i}", html: "î", ascii: "i", utf8: "î"},
|
||
EntityDefinition {name: "Ocirc", latex_math_mode: false, latex: "\\^{O}", html: "Ô", ascii: "O", utf8: "Ô"},
|
||
EntityDefinition {name: "ocirc", latex_math_mode: false, latex: "\\^{o}", html: "ô", ascii: "o", utf8: "ô"},
|
||
EntityDefinition {name: "OElig", latex_math_mode: false, latex: "\\OE{}", html: "Œ", ascii: "OE", utf8: "Œ"},
|
||
EntityDefinition {name: "oelig", latex_math_mode: false, latex: "\\oe{}", html: "œ", ascii: "oe", utf8: "œ"},
|
||
EntityDefinition {name: "szlig", latex_math_mode: false, latex: "\\ss{}", html: "ß", ascii: "ss", utf8: "ß"},
|
||
EntityDefinition {name: "Ucirc", latex_math_mode: false, latex: "\\^{U}", html: "Û", ascii: "U", utf8: "Û"},
|
||
EntityDefinition {name: "ucirc", latex_math_mode: false, latex: "\\^{u}", html: "û", ascii: "u", utf8: "û"},
|
||
EntityDefinition {name: "image", latex_math_mode: true, latex: "\\Im", html: "ℑ", ascii: "I", utf8: "ℑ"},
|
||
EntityDefinition {name: "imath", latex_math_mode: true, latex: "\\imath", html: "ı", ascii: "[dotless i]", utf8: "ı"},
|
||
EntityDefinition {name: "jmath", latex_math_mode: true, latex: "\\jmath", html: "ȷ", ascii: "[dotless j]", utf8: "ȷ"},
|
||
EntityDefinition {name: "Alpha", latex_math_mode: false, latex: "A", html: "Α", ascii: "Alpha", utf8: "Α"},
|
||
EntityDefinition {name: "alpha", latex_math_mode: true, latex: "\\alpha", html: "α", ascii: "alpha", utf8: "α"},
|
||
EntityDefinition {name: "Gamma", latex_math_mode: true, latex: "\\Gamma", html: "Γ", ascii: "Gamma", utf8: "Γ"},
|
||
EntityDefinition {name: "gamma", latex_math_mode: true, latex: "\\gamma", html: "γ", ascii: "gamma", utf8: "γ"},
|
||
EntityDefinition {name: "Delta", latex_math_mode: true, latex: "\\Delta", html: "Δ", ascii: "Delta", utf8: "Δ"},
|
||
EntityDefinition {name: "delta", latex_math_mode: true, latex: "\\delta", html: "δ", ascii: "delta", utf8: "δ"},
|
||
EntityDefinition {name: "Theta", latex_math_mode: true, latex: "\\Theta", html: "Θ", ascii: "Theta", utf8: "Θ"},
|
||
EntityDefinition {name: "theta", latex_math_mode: true, latex: "\\theta", html: "θ", ascii: "theta", utf8: "θ"},
|
||
EntityDefinition {name: "Kappa", latex_math_mode: false, latex: "K", html: "Κ", ascii: "Kappa", utf8: "Κ"},
|
||
EntityDefinition {name: "kappa", latex_math_mode: true, latex: "\\kappa", html: "κ", ascii: "kappa", utf8: "κ"},
|
||
EntityDefinition {name: "Sigma", latex_math_mode: true, latex: "\\Sigma", html: "Σ", ascii: "Sigma", utf8: "Σ"},
|
||
EntityDefinition {name: "sigma", latex_math_mode: true, latex: "\\sigma", html: "σ", ascii: "sigma", utf8: "σ"},
|
||
EntityDefinition {name: "upsih", latex_math_mode: true, latex: "\\Upsilon", html: "ϒ", ascii: "upsilon", utf8: "ϒ"},
|
||
EntityDefinition {name: "Omega", latex_math_mode: true, latex: "\\Omega", html: "Ω", ascii: "Omega", utf8: "Ω"},
|
||
EntityDefinition {name: "omega", latex_math_mode: true, latex: "\\omega", html: "ω", ascii: "omega", utf8: "ω"},
|
||
EntityDefinition {name: "varpi", latex_math_mode: true, latex: "\\varpi", html: "ϖ", ascii: "omega-pi", utf8: "ϖ"},
|
||
EntityDefinition {name: "aleph", latex_math_mode: true, latex: "\\aleph", html: "ℵ", ascii: "aleph", utf8: "ℵ"},
|
||
EntityDefinition {name: "gimel", latex_math_mode: true, latex: "\\gimel", html: "ℷ", ascii: "gimel", utf8: "ℷ"},
|
||
EntityDefinition {name: "dalet", latex_math_mode: true, latex: "\\daleth", html: "ℸ", ascii: "dalet", utf8: "ד"},
|
||
EntityDefinition {name: "THORN", latex_math_mode: false, latex: "\\TH{}", html: "Þ", ascii: "TH", utf8: "Þ"},
|
||
EntityDefinition {name: "thorn", latex_math_mode: false, latex: "\\th{}", html: "þ", ascii: "th", utf8: "þ"},
|
||
EntityDefinition {name: "cdots", latex_math_mode: true, latex: "\\cdots{}", html: "⋯", ascii: "...", utf8: "⋯"},
|
||
EntityDefinition {name: "iexcl", latex_math_mode: false, latex: "!`", html: "¡", ascii: "!", utf8: "¡"},
|
||
EntityDefinition {name: "ndash", latex_math_mode: false, latex: "--", html: "–", ascii: "-", utf8: "–"},
|
||
EntityDefinition {name: "mdash", latex_math_mode: false, latex: "---", html: "—", ascii: "--", utf8: "—"},
|
||
EntityDefinition {name: "acute", latex_math_mode: false, latex: "\\textasciiacute{}", html: "´", ascii: "'", utf8: "´"},
|
||
EntityDefinition {name: "ldquo", latex_math_mode: false, latex: "\\textquotedblleft{}", html: "“", ascii: "\"", utf8: "“"},
|
||
EntityDefinition {name: "rdquo", latex_math_mode: false, latex: "\\textquotedblright{}", html: "”", ascii: "\"", utf8: "”"},
|
||
EntityDefinition {name: "bdquo", latex_math_mode: false, latex: "\\quotedblbase{}", html: "„", ascii: "\"", utf8: "„"},
|
||
EntityDefinition {name: "lsquo", latex_math_mode: false, latex: "\\textquoteleft{}", html: "‘", ascii: "`", utf8: "‘"},
|
||
EntityDefinition {name: "rsquo", latex_math_mode: false, latex: "\\textquoteright{}", html: "’", ascii: "'", utf8: "’"},
|
||
EntityDefinition {name: "sbquo", latex_math_mode: false, latex: "\\quotesinglbase{}", html: "‚", ascii: ",", utf8: "‚"},
|
||
EntityDefinition {name: "laquo", latex_math_mode: false, latex: "\\guillemotleft{}", html: "«", ascii: "<<", utf8: "«"},
|
||
EntityDefinition {name: "raquo", latex_math_mode: false, latex: "\\guillemotright{}", html: "»", ascii: ">>", utf8: "»"},
|
||
EntityDefinition {name: "tilde", latex_math_mode: false, latex: "\\textasciitilde{}", html: "~", ascii: "~", utf8: "~"},
|
||
EntityDefinition {name: "slash", latex_math_mode: false, latex: "/", html: "/", ascii: "/", utf8: "/"},
|
||
EntityDefinition {name: "under", latex_math_mode: false, latex: "\\_", html: "_", ascii: "_", utf8: "_"},
|
||
EntityDefinition {name: "equal", latex_math_mode: false, latex: "=", html: "=", ascii: "=", utf8: "="},
|
||
EntityDefinition {name: "pound", latex_math_mode: false, latex: "\\pounds{}", html: "£", ascii: "pound", utf8: "£"},
|
||
EntityDefinition {name: "trade", latex_math_mode: false, latex: "\\texttrademark{}", html: "™", ascii: "TM", utf8: "™"},
|
||
EntityDefinition {name: "minus", latex_math_mode: true, latex: "-", html: "−", ascii: "-", utf8: "−"},
|
||
EntityDefinition {name: "times", latex_math_mode: false, latex: "\\texttimes{}", html: "×", ascii: "*", utf8: "×"},
|
||
EntityDefinition {name: "frasl", latex_math_mode: false, latex: "/", html: "⁄", ascii: "/", utf8: "⁄"},
|
||
EntityDefinition {name: "colon", latex_math_mode: true, latex: "\\colon", html: ":", ascii: ":", utf8: ":"},
|
||
EntityDefinition {name: "radic", latex_math_mode: true, latex: "\\sqrt{\\,}", html: "√", ascii: "[square root]", utf8: "√"},
|
||
EntityDefinition {name: "micro", latex_math_mode: false, latex: "\\textmu{}", html: "µ", ascii: "micro", utf8: "µ"},
|
||
EntityDefinition {name: "prime", latex_math_mode: true, latex: "\\prime", html: "′", ascii: "'", utf8: "′"},
|
||
EntityDefinition {name: "Prime", latex_math_mode: true, latex: "\\prime{}\\prime", html: "″", ascii: "''", utf8: "″"},
|
||
EntityDefinition {name: "infin", latex_math_mode: true, latex: "\\infty", html: "∞", ascii: "[infinity]", utf8: "∞"},
|
||
EntityDefinition {name: "infty", latex_math_mode: true, latex: "\\infty", html: "∞", ascii: "[infinity]", utf8: "∞"},
|
||
EntityDefinition {name: "wedge", latex_math_mode: true, latex: "\\wedge", html: "∧", ascii: "[logical and]", utf8: "∧"},
|
||
EntityDefinition {name: "smile", latex_math_mode: true, latex: "\\smile", html: "⌣", ascii: "[cup product]", utf8: "⌣"},
|
||
EntityDefinition {name: "frown", latex_math_mode: true, latex: "\\frown", html: "⌢", ascii: "[Cap product]", utf8: "⌢"},
|
||
EntityDefinition {name: "simeq", latex_math_mode: true, latex: "\\simeq", html: "≅", ascii: "[approx. equal to]", utf8: "≅"},
|
||
EntityDefinition {name: "asymp", latex_math_mode: true, latex: "\\asymp", html: "≈", ascii: "[almost equal to]", utf8: "≈"},
|
||
EntityDefinition {name: "equiv", latex_math_mode: true, latex: "\\equiv", html: "≡", ascii: "[identical to]", utf8: "≡"},
|
||
EntityDefinition {name: "exist", latex_math_mode: true, latex: "\\exists", html: "∃", ascii: "[there exists]", utf8: "∃"},
|
||
EntityDefinition {name: "empty", latex_math_mode: true, latex: "\\emptyset", html: "∅", ascii: "[empty set]", utf8: "∅"},
|
||
EntityDefinition {name: "notin", latex_math_mode: true, latex: "\\notin", html: "∉", ascii: "[not an element of]", utf8: "∉"},
|
||
EntityDefinition {name: "nabla", latex_math_mode: true, latex: "\\nabla", html: "∇", ascii: "[nabla]", utf8: "∇"},
|
||
EntityDefinition {name: "angle", latex_math_mode: true, latex: "\\angle", html: "∠", ascii: "[angle]", utf8: "∠"},
|
||
EntityDefinition {name: "lceil", latex_math_mode: true, latex: "\\lceil", html: "⌈", ascii: "[left ceiling]", utf8: "⌈"},
|
||
EntityDefinition {name: "rceil", latex_math_mode: true, latex: "\\rceil", html: "⌉", ascii: "[right ceiling]", utf8: "⌉"},
|
||
EntityDefinition {name: "crarr", latex_math_mode: true, latex: "\\hookleftarrow", html: "↵", ascii: "<-'", utf8: "↵"},
|
||
EntityDefinition {name: "oplus", latex_math_mode: true, latex: "\\oplus", html: "⊕", ascii: "[circled plus]", utf8: "⊕"},
|
||
EntityDefinition {name: "check", latex_math_mode: true, latex: "\\checkmark", html: "✓", ascii: "[checkmark]", utf8: "✓"},
|
||
EntityDefinition {name: "cedil", latex_math_mode: false, latex: "\\c{}", html: "¸", ascii: "[cedilla]", utf8: "¸"},
|
||
EntityDefinition {name: "oline", latex_math_mode: true, latex: "\\overline{~}", html: "‾", ascii: "[overline]", utf8: "‾"},
|
||
EntityDefinition {name: "clubs", latex_math_mode: true, latex: "\\clubsuit", html: "♣", ascii: "[clubs]", utf8: "♣"},
|
||
EntityDefinition {name: "diams", latex_math_mode: true, latex: "\\diamondsuit", html: "♦", ascii: "[diamonds]", utf8: "◆"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{2.0em}", html: "    ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "Auml", latex_math_mode: false, latex: "\\\"{A}", html: "Ä", ascii: "Ae", utf8: "Ä"},
|
||
EntityDefinition {name: "auml", latex_math_mode: false, latex: "\\\"{a}", html: "ä", ascii: "ae", utf8: "ä"},
|
||
EntityDefinition {name: "Euml", latex_math_mode: false, latex: "\\\"{E}", html: "Ë", ascii: "E", utf8: "Ë"},
|
||
EntityDefinition {name: "euml", latex_math_mode: false, latex: "\\\"{e}", html: "ë", ascii: "e", utf8: "ë"},
|
||
EntityDefinition {name: "Idot", latex_math_mode: false, latex: "\\.{I}", html: "&idot;", ascii: "I", utf8: "İ"},
|
||
EntityDefinition {name: "Iuml", latex_math_mode: false, latex: "\\\"{I}", html: "Ï", ascii: "I", utf8: "Ï"},
|
||
EntityDefinition {name: "iuml", latex_math_mode: false, latex: "\\\"{i}", html: "ï", ascii: "i", utf8: "ï"},
|
||
EntityDefinition {name: "Ouml", latex_math_mode: false, latex: "\\\"{O}", html: "Ö", ascii: "Oe", utf8: "Ö"},
|
||
EntityDefinition {name: "ouml", latex_math_mode: false, latex: "\\\"{o}", html: "ö", ascii: "oe", utf8: "ö"},
|
||
EntityDefinition {name: "Uuml", latex_math_mode: false, latex: "\\\"{U}", html: "Ü", ascii: "Ue", utf8: "Ü"},
|
||
EntityDefinition {name: "uuml", latex_math_mode: false, latex: "\\\"{u}", html: "ü", ascii: "ue", utf8: "ü"},
|
||
EntityDefinition {name: "Yuml", latex_math_mode: false, latex: "\\\"{Y}", html: "Ÿ", ascii: "Y", utf8: "Ÿ"},
|
||
EntityDefinition {name: "yuml", latex_math_mode: false, latex: "\\\"{y}", html: "ÿ", ascii: "y", utf8: "ÿ"},
|
||
EntityDefinition {name: "fnof", latex_math_mode: false, latex: "\\textit{f}", html: "ƒ", ascii: "f", utf8: "ƒ"},
|
||
EntityDefinition {name: "real", latex_math_mode: true, latex: "\\Re", html: "ℜ", ascii: "R", utf8: "ℜ"},
|
||
EntityDefinition {name: "Beta", latex_math_mode: false, latex: "B", html: "Β", ascii: "Beta", utf8: "Β"},
|
||
EntityDefinition {name: "beta", latex_math_mode: true, latex: "\\beta", html: "β", ascii: "beta", utf8: "β"},
|
||
EntityDefinition {name: "Zeta", latex_math_mode: false, latex: "Z", html: "Ζ", ascii: "Zeta", utf8: "Ζ"},
|
||
EntityDefinition {name: "zeta", latex_math_mode: true, latex: "\\zeta", html: "ζ", ascii: "zeta", utf8: "ζ"},
|
||
EntityDefinition {name: "Iota", latex_math_mode: false, latex: "I", html: "Ι", ascii: "Iota", utf8: "Ι"},
|
||
EntityDefinition {name: "iota", latex_math_mode: true, latex: "\\iota", html: "ι", ascii: "iota", utf8: "ι"},
|
||
EntityDefinition {name: "beth", latex_math_mode: true, latex: "\\beth", html: "ℶ", ascii: "beth", utf8: "ב"},
|
||
EntityDefinition {name: "dots", latex_math_mode: false, latex: "\\dots{}", html: "…", ascii: "...", utf8: "…"},
|
||
EntityDefinition {name: "quot", latex_math_mode: false, latex: "\\textquotedbl{}", html: """, ascii: "\"", utf8: "\""},
|
||
EntityDefinition {name: "circ", latex_math_mode: false, latex: "\\^{}", html: "ˆ", ascii: "^", utf8: "∘"},
|
||
EntityDefinition {name: "vert", latex_math_mode: true, latex: "\\vert{}", html: "|", ascii: "|", utf8: "|"},
|
||
EntityDefinition {name: "vbar", latex_math_mode: false, latex: "|", html: "|", ascii: "|", utf8: "|"},
|
||
EntityDefinition {name: "sect", latex_math_mode: false, latex: "\\S", html: "§", ascii: "section", utf8: "§"},
|
||
EntityDefinition {name: "para", latex_math_mode: false, latex: "\\P{}", html: "¶", ascii: "paragraph", utf8: "¶"},
|
||
EntityDefinition {name: "plus", latex_math_mode: false, latex: "+", html: "+", ascii: "+", utf8: "+"},
|
||
EntityDefinition {name: "ddag", latex_math_mode: false, latex: "\\ddag{}", html: "‡", ascii: "[doubledagger]", utf8: "‡"},
|
||
EntityDefinition {name: "nbsp", latex_math_mode: false, latex: "~", html: " ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "ensp", latex_math_mode: false, latex: "\\hspace*{.5em}", html: " ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "emsp", latex_math_mode: false, latex: "\\hspace*{1em}", html: " ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "cent", latex_math_mode: false, latex: "\\textcent{}", html: "¢", ascii: "cent", utf8: "¢"},
|
||
EntityDefinition {name: "euro", latex_math_mode: false, latex: "\\texteuro{}", html: "€", ascii: "EUR", utf8: "€"},
|
||
EntityDefinition {name: "copy", latex_math_mode: false, latex: "\\textcopyright{}", html: "©", ascii: "(c)", utf8: "©"},
|
||
EntityDefinition {name: "sup1", latex_math_mode: false, latex: "\\textonesuperior{}", html: "¹", ascii: "^1", utf8: "¹"},
|
||
EntityDefinition {name: "sup2", latex_math_mode: false, latex: "\\texttwosuperior{}", html: "²", ascii: "^2", utf8: "²"},
|
||
EntityDefinition {name: "sup3", latex_math_mode: false, latex: "\\textthreesuperior{}", html: "³", ascii: "^3", utf8: "³"},
|
||
EntityDefinition {name: "prod", latex_math_mode: true, latex: "\\prod", html: "∏", ascii: "[product]", utf8: "∏"},
|
||
EntityDefinition {name: "macr", latex_math_mode: false, latex: "\\textasciimacron{}", html: "¯", ascii: "[macron]", utf8: "¯"},
|
||
EntityDefinition {name: "prop", latex_math_mode: true, latex: "\\propto", html: "∝", ascii: "[proportional to]", utf8: "∝"},
|
||
EntityDefinition {name: "land", latex_math_mode: true, latex: "\\land", html: "∧", ascii: "[logical and]", utf8: "∧"},
|
||
EntityDefinition {name: "cong", latex_math_mode: true, latex: "\\cong", html: "≅", ascii: "[approx. equal to]", utf8: "≅"},
|
||
EntityDefinition {name: "prec", latex_math_mode: true, latex: "\\prec", html: "≺", ascii: "[precedes]", utf8: "≺"},
|
||
EntityDefinition {name: "succ", latex_math_mode: true, latex: "\\succ", html: "≻", ascii: "[succeeds]", utf8: "≻"},
|
||
EntityDefinition {name: "nsub", latex_math_mode: true, latex: "\\not\\subset", html: "⊄", ascii: "[not a subset of]", utf8: "⊄"},
|
||
EntityDefinition {name: "sube", latex_math_mode: true, latex: "\\subseteq", html: "⊆", ascii: "[subset of or equal to]", utf8: "⊆"},
|
||
EntityDefinition {name: "nsup", latex_math_mode: true, latex: "\\not\\supset", html: "⊅", ascii: "[not a superset of]", utf8: "⊅"},
|
||
EntityDefinition {name: "supe", latex_math_mode: true, latex: "\\supseteq", html: "⊇", ascii: "[superset of or equal to]", utf8: "⊇"},
|
||
EntityDefinition {name: "isin", latex_math_mode: true, latex: "\\in", html: "∈", ascii: "[element of]", utf8: "∈"},
|
||
EntityDefinition {name: "perp", latex_math_mode: true, latex: "\\perp", html: "⊥", ascii: "[up tack]", utf8: "⊥"},
|
||
EntityDefinition {name: "sdot", latex_math_mode: true, latex: "\\cdot", html: "⋅", ascii: "[dot]", utf8: "⋅"},
|
||
EntityDefinition {name: "cdot", latex_math_mode: true, latex: "\\cdot", html: "⋅", ascii: "[dot]", utf8: "⋅"},
|
||
EntityDefinition {name: "lang", latex_math_mode: true, latex: "\\langle", html: "⟨", ascii: "<", utf8: "⟨"},
|
||
EntityDefinition {name: "rang", latex_math_mode: true, latex: "\\rangle", html: "⟩", ascii: ">", utf8: "⟩"},
|
||
EntityDefinition {name: "hbar", latex_math_mode: true, latex: "\\hbar", html: "ℏ", ascii: "hbar", utf8: "ℏ"},
|
||
EntityDefinition {name: "larr", latex_math_mode: true, latex: "\\leftarrow", html: "←", ascii: "<-", utf8: "←"},
|
||
EntityDefinition {name: "gets", latex_math_mode: true, latex: "\\gets", html: "←", ascii: "<-", utf8: "←"},
|
||
EntityDefinition {name: "lArr", latex_math_mode: true, latex: "\\Leftarrow", html: "⇐", ascii: "<=", utf8: "⇐"},
|
||
EntityDefinition {name: "uarr", latex_math_mode: true, latex: "\\uparrow", html: "↑", ascii: "[uparrow]", utf8: "↑"},
|
||
EntityDefinition {name: "uArr", latex_math_mode: true, latex: "\\Uparrow", html: "⇑", ascii: "[dbluparrow]", utf8: "⇑"},
|
||
EntityDefinition {name: "rarr", latex_math_mode: true, latex: "\\rightarrow", html: "→", ascii: "->", utf8: "→"},
|
||
EntityDefinition {name: "rArr", latex_math_mode: true, latex: "\\Rightarrow", html: "⇒", ascii: "=>", utf8: "⇒"},
|
||
EntityDefinition {name: "darr", latex_math_mode: true, latex: "\\downarrow", html: "↓", ascii: "[downarrow]", utf8: "↓"},
|
||
EntityDefinition {name: "dArr", latex_math_mode: true, latex: "\\Downarrow", html: "⇓", ascii: "[dbldownarrow]", utf8: "⇓"},
|
||
EntityDefinition {name: "harr", latex_math_mode: true, latex: "\\leftrightarrow", html: "↔", ascii: "<->", utf8: "↔"},
|
||
EntityDefinition {name: "hArr", latex_math_mode: true, latex: "\\Leftrightarrow", html: "⇔", ascii: "<=>", utf8: "⇔"},
|
||
EntityDefinition {name: "cosh", latex_math_mode: true, latex: "\\cosh", html: "cosh", ascii: "cosh", utf8: "cosh"},
|
||
EntityDefinition {name: "coth", latex_math_mode: true, latex: "\\coth", html: "coth", ascii: "coth", utf8: "coth"},
|
||
EntityDefinition {name: "sinh", latex_math_mode: true, latex: "\\sinh", html: "sinh", ascii: "sinh", utf8: "sinh"},
|
||
EntityDefinition {name: "tanh", latex_math_mode: true, latex: "\\tanh", html: "tanh", ascii: "tanh", utf8: "tanh"},
|
||
EntityDefinition {name: "bull", latex_math_mode: false, latex: "\\textbullet{}", html: "•", ascii: "*", utf8: "•"},
|
||
EntityDefinition {name: "star", latex_math_mode: true, latex: "\\star", html: "*", ascii: "*", utf8: "⋆"},
|
||
EntityDefinition {name: "odot", latex_math_mode: true, latex: "\\odot", html: "o", ascii: "[circled dot]", utf8: "ʘ"},
|
||
EntityDefinition {name: "ordf", latex_math_mode: false, latex: "\\textordfeminine{}", html: "ª", ascii: "_a_", utf8: "ª"},
|
||
EntityDefinition {name: "ordm", latex_math_mode: false, latex: "\\textordmasculine{}", html: "º", ascii: "_o_", utf8: "º"},
|
||
EntityDefinition {name: "zwnj", latex_math_mode: false, latex: "\\/{}", html: "‌", ascii: "", utf8: ""},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{1.5em}", html: "   ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "ell", latex_math_mode: true, latex: "\\ell", html: "ℓ", ascii: "ell", utf8: "ℓ"},
|
||
EntityDefinition {name: "Eta", latex_math_mode: false, latex: "H", html: "Η", ascii: "Eta", utf8: "Η"},
|
||
EntityDefinition {name: "eta", latex_math_mode: true, latex: "\\eta", html: "η", ascii: "eta", utf8: "η"},
|
||
EntityDefinition {name: "Rho", latex_math_mode: false, latex: "P", html: "Ρ", ascii: "Rho", utf8: "Ρ"},
|
||
EntityDefinition {name: "rho", latex_math_mode: true, latex: "\\rho", html: "ρ", ascii: "rho", utf8: "ρ"},
|
||
EntityDefinition {name: "Tau", latex_math_mode: false, latex: "T", html: "Τ", ascii: "Tau", utf8: "Τ"},
|
||
EntityDefinition {name: "Phi", latex_math_mode: true, latex: "\\Phi", html: "Φ", ascii: "Phi", utf8: "Φ"},
|
||
EntityDefinition {name: "phi", latex_math_mode: true, latex: "\\phi", html: "φ", ascii: "phi", utf8: "ɸ"},
|
||
EntityDefinition {name: "Chi", latex_math_mode: false, latex: "X", html: "Χ", ascii: "Chi", utf8: "Χ"},
|
||
EntityDefinition {name: "chi", latex_math_mode: true, latex: "\\chi", html: "χ", ascii: "chi", utf8: "χ"},
|
||
EntityDefinition {name: "Psi", latex_math_mode: true, latex: "\\Psi", html: "Ψ", ascii: "Psi", utf8: "Ψ"},
|
||
EntityDefinition {name: "psi", latex_math_mode: true, latex: "\\psi", html: "ψ", ascii: "psi", utf8: "ψ"},
|
||
EntityDefinition {name: "tau", latex_math_mode: true, latex: "\\tau", html: "τ", ascii: "tau", utf8: "τ"},
|
||
EntityDefinition {name: "piv", latex_math_mode: true, latex: "\\varpi", html: "ϖ", ascii: "omega-pi", utf8: "ϖ"},
|
||
EntityDefinition {name: "ETH", latex_math_mode: false, latex: "\\DH{}", html: "Ð", ascii: "D", utf8: "Ð"},
|
||
EntityDefinition {name: "eth", latex_math_mode: false, latex: "\\dh{}", html: "ð", ascii: "dh", utf8: "ð"},
|
||
EntityDefinition {name: "shy", latex_math_mode: false, latex: "\\-", html: "­", ascii: "", utf8: ""},
|
||
EntityDefinition {name: "amp", latex_math_mode: false, latex: "\\&", html: "&", ascii: "&", utf8: "&"},
|
||
EntityDefinition {name: "dag", latex_math_mode: false, latex: "\\dag{}", html: "†", ascii: "[dagger]", utf8: "†"},
|
||
EntityDefinition {name: "yen", latex_math_mode: false, latex: "\\textyen{}", html: "¥", ascii: "yen", utf8: "¥"},
|
||
EntityDefinition {name: "EUR", latex_math_mode: false, latex: "\\texteuro{}", html: "€", ascii: "EUR", utf8: "€"},
|
||
EntityDefinition {name: "USD", latex_math_mode: false, latex: "\\$", html: "$", ascii: "$", utf8: "$"},
|
||
EntityDefinition {name: "reg", latex_math_mode: false, latex: "\\textregistered{}", html: "®", ascii: "(r)", utf8: "®"},
|
||
EntityDefinition {name: "div", latex_math_mode: false, latex: "\\textdiv{}", html: "÷", ascii: "/", utf8: "÷"},
|
||
EntityDefinition {name: "sum", latex_math_mode: true, latex: "\\sum", html: "∑", ascii: "[sum]", utf8: "∑"},
|
||
EntityDefinition {name: "deg", latex_math_mode: false, latex: "\\textdegree{}", html: "°", ascii: "degree", utf8: "°"},
|
||
EntityDefinition {name: "not", latex_math_mode: false, latex: "\\textlnot{}", html: "¬", ascii: "[angled dash]", utf8: "¬"},
|
||
EntityDefinition {name: "neg", latex_math_mode: true, latex: "\\neg{}", html: "¬", ascii: "[angled dash]", utf8: "¬"},
|
||
EntityDefinition {name: "lor", latex_math_mode: true, latex: "\\lor", html: "∨", ascii: "[logical or]", utf8: "∨"},
|
||
EntityDefinition {name: "vee", latex_math_mode: true, latex: "\\vee", html: "∨", ascii: "[logical or]", utf8: "∨"},
|
||
EntityDefinition {name: "cap", latex_math_mode: true, latex: "\\cap", html: "∩", ascii: "[intersection]", utf8: "∩"},
|
||
EntityDefinition {name: "cup", latex_math_mode: true, latex: "\\cup", html: "∪", ascii: "[union]", utf8: "∪"},
|
||
EntityDefinition {name: "int", latex_math_mode: true, latex: "\\int", html: "∫", ascii: "[integral]", utf8: "∫"},
|
||
EntityDefinition {name: "sim", latex_math_mode: true, latex: "\\sim", html: "∼", ascii: "~", utf8: "∼"},
|
||
EntityDefinition {name: "neq", latex_math_mode: true, latex: "\\neq", html: "≠", ascii: "[not equal to]", utf8: "≠"},
|
||
EntityDefinition {name: "leq", latex_math_mode: true, latex: "\\le", html: "≤", ascii: "<=", utf8: "≤"},
|
||
EntityDefinition {name: "geq", latex_math_mode: true, latex: "\\ge", html: "≥", ascii: ">=", utf8: "≥"},
|
||
EntityDefinition {name: "lll", latex_math_mode: true, latex: "\\lll", html: "⋘", ascii: "<<<", utf8: "⋘"},
|
||
EntityDefinition {name: "ggg", latex_math_mode: true, latex: "\\ggg", html: "⋙", ascii: ">>>", utf8: "⋙"},
|
||
EntityDefinition {name: "sub", latex_math_mode: true, latex: "\\subset", html: "⊂", ascii: "[subset of]", utf8: "⊂"},
|
||
EntityDefinition {name: "sup", latex_math_mode: true, latex: "\\supset", html: "⊃", ascii: "[superset of]", utf8: "⊃"},
|
||
EntityDefinition {name: "ang", latex_math_mode: true, latex: "\\angle", html: "∠", ascii: "[angle]", utf8: "∠"},
|
||
EntityDefinition {name: "mho", latex_math_mode: true, latex: "\\mho", html: "℧", ascii: "mho", utf8: "℧"},
|
||
EntityDefinition {name: "arg", latex_math_mode: true, latex: "\\arg", html: "arg", ascii: "arg", utf8: "arg"},
|
||
EntityDefinition {name: "cos", latex_math_mode: true, latex: "\\cos", html: "cos", ascii: "cos", utf8: "cos"},
|
||
EntityDefinition {name: "cot", latex_math_mode: true, latex: "\\cot", html: "cot", ascii: "cot", utf8: "cot"},
|
||
EntityDefinition {name: "csc", latex_math_mode: true, latex: "\\csc", html: "csc", ascii: "csc", utf8: "csc"},
|
||
EntityDefinition {name: "deg", latex_math_mode: true, latex: "\\deg", html: "°", ascii: "deg", utf8: "deg"},
|
||
EntityDefinition {name: "det", latex_math_mode: true, latex: "\\det", html: "det", ascii: "det", utf8: "det"},
|
||
EntityDefinition {name: "dim", latex_math_mode: true, latex: "\\dim", html: "dim", ascii: "dim", utf8: "dim"},
|
||
EntityDefinition {name: "exp", latex_math_mode: true, latex: "\\exp", html: "exp", ascii: "exp", utf8: "exp"},
|
||
EntityDefinition {name: "gcd", latex_math_mode: true, latex: "\\gcd", html: "gcd", ascii: "gcd", utf8: "gcd"},
|
||
EntityDefinition {name: "hom", latex_math_mode: true, latex: "\\hom", html: "hom", ascii: "hom", utf8: "hom"},
|
||
EntityDefinition {name: "inf", latex_math_mode: true, latex: "\\inf", html: "inf", ascii: "inf", utf8: "inf"},
|
||
EntityDefinition {name: "ker", latex_math_mode: true, latex: "\\ker", html: "ker", ascii: "ker", utf8: "ker"},
|
||
EntityDefinition {name: "lim", latex_math_mode: true, latex: "\\lim", html: "lim", ascii: "lim", utf8: "lim"},
|
||
EntityDefinition {name: "log", latex_math_mode: true, latex: "\\log", html: "log", ascii: "log", utf8: "log"},
|
||
EntityDefinition {name: "max", latex_math_mode: true, latex: "\\max", html: "max", ascii: "max", utf8: "max"},
|
||
EntityDefinition {name: "min", latex_math_mode: true, latex: "\\min", html: "min", ascii: "min", utf8: "min"},
|
||
EntityDefinition {name: "sec", latex_math_mode: true, latex: "\\sec", html: "sec", ascii: "sec", utf8: "sec"},
|
||
EntityDefinition {name: "sin", latex_math_mode: true, latex: "\\sin", html: "sin", ascii: "sin", utf8: "sin"},
|
||
EntityDefinition {name: "sup", latex_math_mode: true, latex: "\\sup", html: "⊃", ascii: "sup", utf8: "sup"},
|
||
EntityDefinition {name: "tan", latex_math_mode: true, latex: "\\tan", html: "tan", ascii: "tan", utf8: "tan"},
|
||
EntityDefinition {name: "ast", latex_math_mode: true, latex: "\\ast", html: "∗", ascii: "*", utf8: "*"},
|
||
EntityDefinition {name: "uml", latex_math_mode: false, latex: "\\textasciidieresis{}", html: "¨", ascii: "[diaeresis]", utf8: "¨"},
|
||
EntityDefinition {name: "zwj", latex_math_mode: false, latex: "", html: "‍", ascii: "", utf8: ""},
|
||
EntityDefinition {name: "lrm", latex_math_mode: false, latex: "", html: "‎", ascii: "", utf8: ""},
|
||
EntityDefinition {name: "rlm", latex_math_mode: false, latex: "", html: "‏", ascii: "", utf8: ""},
|
||
EntityDefinition {name: "sad", latex_math_mode: true, latex: "\\ddot\\frown", html: "☹", ascii: ":-(", utf8: "☹"},
|
||
EntityDefinition {name: "loz", latex_math_mode: true, latex: "\\lozenge", html: "◊", ascii: "[lozenge]", utf8: "⧫"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{1.0em}", html: "  ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "AA", latex_math_mode: false, latex: "\\AA{}", html: "Å", ascii: "A", utf8: "Å"},
|
||
EntityDefinition {name: "Mu", latex_math_mode: false, latex: "M", html: "Μ", ascii: "Mu", utf8: "Μ"},
|
||
EntityDefinition {name: "mu", latex_math_mode: true, latex: "\\mu", html: "μ", ascii: "mu", utf8: "μ"},
|
||
EntityDefinition {name: "nu", latex_math_mode: true, latex: "\\nu", html: "ν", ascii: "nu", utf8: "ν"},
|
||
EntityDefinition {name: "Nu", latex_math_mode: false, latex: "N", html: "Ν", ascii: "Nu", utf8: "Ν"},
|
||
EntityDefinition {name: "Xi", latex_math_mode: true, latex: "\\Xi", html: "Ξ", ascii: "Xi", utf8: "Ξ"},
|
||
EntityDefinition {name: "xi", latex_math_mode: true, latex: "\\xi", html: "ξ", ascii: "xi", utf8: "ξ"},
|
||
EntityDefinition {name: "Pi", latex_math_mode: true, latex: "\\Pi", html: "Π", ascii: "Pi", utf8: "Π"},
|
||
EntityDefinition {name: "pi", latex_math_mode: true, latex: "\\pi", html: "π", ascii: "pi", utf8: "π"},
|
||
EntityDefinition {name: "lt", latex_math_mode: false, latex: "\\textless{}", html: "<", ascii: "<", utf8: "<"},
|
||
EntityDefinition {name: "gt", latex_math_mode: false, latex: "\\textgreater{}", html: ">", ascii: ">", utf8: ">"},
|
||
EntityDefinition {name: "pm", latex_math_mode: false, latex: "\\textpm{}", html: "±", ascii: "+-", utf8: "±"},
|
||
EntityDefinition {name: "ne", latex_math_mode: true, latex: "\\ne", html: "≠", ascii: "[not equal to]", utf8: "≠"},
|
||
EntityDefinition {name: "le", latex_math_mode: true, latex: "\\le", html: "≤", ascii: "<=", utf8: "≤"},
|
||
EntityDefinition {name: "ge", latex_math_mode: true, latex: "\\ge", html: "≥", ascii: ">=", utf8: "≥"},
|
||
EntityDefinition {name: "ll", latex_math_mode: true, latex: "\\ll", html: "≪", ascii: "<<", utf8: "≪"},
|
||
EntityDefinition {name: "Ll", latex_math_mode: true, latex: "\\lll", html: "⋘", ascii: "<<<", utf8: "⋘"},
|
||
EntityDefinition {name: "gg", latex_math_mode: true, latex: "\\gg", html: "≫", ascii: ">>", utf8: "≫"},
|
||
EntityDefinition {name: "Gg", latex_math_mode: true, latex: "\\ggg", html: "⋙", ascii: ">>>", utf8: "⋙"},
|
||
EntityDefinition {name: "in", latex_math_mode: true, latex: "\\in", html: "∈", ascii: "[element of]", utf8: "∈"},
|
||
EntityDefinition {name: "ni", latex_math_mode: true, latex: "\\ni", html: "∋", ascii: "[contains as member]", utf8: "∋"},
|
||
EntityDefinition {name: "to", latex_math_mode: true, latex: "\\to", html: "→", ascii: "->", utf8: "→"},
|
||
EntityDefinition {name: "lg", latex_math_mode: true, latex: "\\lg", html: "lg", ascii: "lg", utf8: "lg"},
|
||
EntityDefinition {name: "ln", latex_math_mode: true, latex: "\\ln", html: "ln", ascii: "ln", utf8: "ln"},
|
||
EntityDefinition {name: "Pr", latex_math_mode: true, latex: "\\Pr", html: "Pr", ascii: "Pr", utf8: "Pr"},
|
||
EntityDefinition {name: "_ ", latex_math_mode: false, latex: "\\hspace*{0.5em}", html: " ", ascii: " ", utf8: " "},
|
||
EntityDefinition {name: "S", latex_math_mode: false, latex: "\\S", html: "§", ascii: "section", utf8: "§"},
|
||
EntityDefinition {name: "P", latex_math_mode: false, latex: "\\P{}", html: "¶", ascii: "paragraph", utf8: "¶"},
|
||
];
|