🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
28
node_modules/hast-util-to-estree/lib/handlers/index.js
generated
vendored
Normal file
28
node_modules/hast-util-to-estree/lib/handlers/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
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 {text} from './text.js'
|
||||
import {root} from './root.js'
|
||||
|
||||
export const handlers = {
|
||||
comment,
|
||||
doctype: ignore,
|
||||
element,
|
||||
mdxFlowExpression: mdxExpression,
|
||||
mdxTextExpression: mdxExpression,
|
||||
mdxJsxFlowElement: mdxJsxElement,
|
||||
mdxJsxTextElement: mdxJsxElement,
|
||||
mdxjsEsm,
|
||||
text,
|
||||
root
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle a node that is ignored.
|
||||
*
|
||||
* @returns {void}
|
||||
* Nothing.
|
||||
*/
|
||||
function ignore() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue