mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-15 20:34:56 +02:00
29 lines
623 B
JavaScript
29 lines
623 B
JavaScript
import {comment} from './comment.js'
|
|
import {element} from './element.js'
|
|
import {mdxExpression} from './mdx-expression.js'
|
|
import {mdxJsxElement} from './mdx-jsx-element.js'
|
|
import {mdxjsEsm} from './mdxjs-esm.js'
|
|
import {root} from './root.js'
|
|
import {text} from './text.js'
|
|
|
|
export const handlers = {
|
|
comment,
|
|
doctype: ignore,
|
|
element,
|
|
mdxFlowExpression: mdxExpression,
|
|
mdxJsxFlowElement: mdxJsxElement,
|
|
mdxJsxTextElement: mdxJsxElement,
|
|
mdxTextExpression: mdxExpression,
|
|
mdxjsEsm,
|
|
root,
|
|
text
|
|
}
|
|
|
|
/**
|
|
* Handle a node that is ignored.
|
|
*
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
function ignore() {}
|