-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparsers.js
More file actions
14 lines (14 loc) · 650 Bytes
/
parsers.js
File metadata and controls
14 lines (14 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export { text } from './parsers/text.js';
export {
createStyleSheet, createCSSParser, css, lightCSS, prefixCSSRules, useScopedStyle,
darkCSS, styleSheetToFile, styleSheetToLink, createBoundParser, adoptStyles, createStyleScope,
} from './parsers/css.js';
export {
createHTMLParser, html, doc, htmlUnsafe, docUnsafe, htmlToFile,
createTrustedHTMLTemplate, trustedHTML, createShadowParser, shadow, styledShadow, el,
} from './parsers/html.js';
export { xml } from './parsers/xml.js';
export { svg } from './parsers/svg.js';
export { json } from './parsers/json.js';
export { math } from './parsers/math.js';
export { url } from './parsers/url.js';