| | |
| | | import { PluggableList } from "unified" |
| | | import { QuartzTransformerPlugin } from "../types" |
| | | import { Root, HTML, BlockContent, DefinitionContent, Code, Paragraph } from "mdast" |
| | | import { Element, Literal } from 'hast' |
| | | import { Element, Literal } from "hast" |
| | | import { Replace, findAndReplace as mdastFindReplace } from "mdast-util-find-and-replace" |
| | | import { slug as slugAnchor } from "github-slugger" |
| | | import rehypeRaw from "rehype-raw" |
| | |
| | | node.data = { |
| | | hProperties: { |
| | | ...(node.data?.hProperties ?? {}), |
| | | className: `callout ${collapse ? "is-collapsible" : ""} ${defaultState === "collapsed" ? "is-collapsed" : "" |
| | | className: `callout ${collapse ? "is-collapsible" : ""} ${ |
| | | defaultState === "collapsed" ? "is-collapsed" : "" |
| | | }`, |
| | | "data-callout": calloutType, |
| | | "data-callout-fold": collapse, |
| | |
| | | visit(tree, "element", (node, _index, _parent) => { |
| | | if (validTagTypes.has(node.tagName)) { |
| | | const last = node.children.at(-1) as Literal |
| | | if (last.value && typeof last.value === 'string') { |
| | | if (last.value && typeof last.value === "string") { |
| | | const matches = last.value.match(blockReferenceRegex) |
| | | if (matches && matches.length >= 1) { |
| | | last.value = last.value.slice(0, -matches[0].length) |
| | | const block = matches[0].slice(1) |
| | | node.properties = { |
| | | ...node.properties, |
| | | id: block |
| | | id: block, |
| | | } |
| | | file.data.blocks![block] = node |
| | | } |
| | |
| | | blocks: Record<string, Element> |
| | | } |
| | | } |
| | | |