index.js 358 B

12345678910111213
  1. /**
  2. * Map of web namespaces.
  3. *
  4. * @type {Record<string, string>}
  5. */
  6. export const webNamespaces = {
  7. html: 'http://www.w3.org/1999/xhtml',
  8. mathml: 'http://www.w3.org/1998/Math/MathML',
  9. svg: 'http://www.w3.org/2000/svg',
  10. xlink: 'http://www.w3.org/1999/xlink',
  11. xml: 'http://www.w3.org/XML/1998/namespace',
  12. xmlns: 'http://www.w3.org/2000/xmlns/'
  13. }