UNPKG

@signalwire/docusaurus-plugin-llms-txt

Version:

Generate Markdown versions of Docusaurus HTML pages and an llms.txt index file

10 lines 459 B
import type { Root } from 'hast'; import type { Plugin } from 'unified'; /** * Rehype plugin that flattens <ul>/<ol> lists that appear *inside* table cells. * Each list item becomes text prefixed with a dash or index and separated by <br />. * This keeps tables valid in Markdown while preserving line-breaks and inline markup. */ declare const rehypeTables: Plugin<[], Root, Root>; export default rehypeTables; //# sourceMappingURL=rehype-tables.d.ts.map