Releases: wataru-chocola/remark-extended-table
Releases · wataru-chocola/remark-extended-table
[email protected]
- chore: update build and test commands
[email protected]
Note: Version bump only for package micromark-extension-extended-table
[email protected]
- fix: colspan / rowspan break cell alignment
- chore: update build and test commands
[email protected]
[email protected]
Note: Version bump only for package micromark-extension-extended-table
[email protected]
Note: Version bump only for package mdast-util-extended-table
[email protected]
- deps: support unified v11 / remark v11 / micromark v4
BREAKING CHANGES
This does not peek into remarkGfm options anymore.
You now have to pass the same options as remarkGfm to this plugin.
const md2md = (md: string) => unified()
.use(remarkParse)
.use(remarkGfm, { tablePipeAlign: false })
- .use(remarkExtendedTable)
+ .use(remarkExtendedTable, { tablePipeAlign: false })
.use(remarkStringify)
.process(md);
[email protected]
- chore!: support micromark v4
[email protected]
- chore!: update unist and mdast utils to those of unified v11