mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 05:49:31 +08:00
14 lines
311 B
Text
14 lines
311 B
Text
/**
|
|
* @typedef {import('mdast').Root} Root
|
|
* @typedef {import('../types.js').Handle} Handle
|
|
*/
|
|
|
|
import {containerFlow} from '../util/container-flow.js'
|
|
|
|
/**
|
|
* @type {Handle}
|
|
* @param {Root} node
|
|
*/
|
|
export function root(node, _, context, safeOptions) {
|
|
return containerFlow(node, context, safeOptions)
|
|
}
|