26 lines
630 B
JavaScript
26 lines
630 B
JavaScript
|
/**
|
||
|
* @typedef {import('hast').Element} HastElement
|
||
|
* @typedef {import('hast').Text} HastText
|
||
|
* @typedef {import('mdast').Text} MdastText
|
||
|
* @typedef {import('../state.js').State} State
|
||
|
*/
|
||
|
|
||
|
import {trimLines} from 'trim-lines'
|
||
|
|
||
|
/**
|
||
|
* Turn an mdast `text` node into hast.
|
||
|
*
|
||
|
* @param {State} state
|
||
|
* Info passed around.
|
||
|
* @param {MdastText} node
|
||
|
* mdast node.
|
||
|
* @returns {HastElement | HastText}
|
||
|
* hast node.
|
||
|
*/
|
||
|
export function text(state, node) {
|
||
|
/** @type {HastText} */
|
||
|
const result = {type: 'text', value: trimLines(String(node.value))}
|
||
|
state.patch(node, result)
|
||
|
return state.applyData(node, result)
|
||
|
}
|