UNPKG

@markuplint/ml-spec

Version:

Types and schema that specs of the Markup languages for markuplint

17 lines (16 loc) 385 B
export function getNS(namespaceURI) { switch (namespaceURI) { case 'http://www.w3.org/2000/svg': { return 'svg'; } case 'http://www.w3.org/1998/Math/MathML': { return 'mml'; } case 'http://www.w3.org/1999/xlink': { return 'xlink'; } default: { return 'html'; } } }