Skip to content

Releases: wataru-chocola/remark-extended-table

[email protected]

21 Apr 06:53
a90853f
Compare
Choose a tag to compare
  • chore: update build and test commands

[email protected]

21 Apr 06:51
a90853f
Compare
Choose a tag to compare

Note: Version bump only for package micromark-extension-extended-table

[email protected]

21 Apr 06:52
a90853f
Compare
Choose a tag to compare
  • fix: colspan / rowspan break cell alignment
  • chore: update build and test commands

[email protected]

19 Nov 10:32
ddea8be
Compare
Choose a tag to compare

Bug Fixes

  • remark-extended-table: broken peer dependency (#131) (37e0901)

[email protected]

19 Nov 10:30
ddea8be
Compare
Choose a tag to compare

Note: Version bump only for package micromark-extension-extended-table

[email protected]

19 Nov 10:31
ddea8be
Compare
Choose a tag to compare

Note: Version bump only for package mdast-util-extended-table

[email protected]

09 Oct 11:13
165dd25
Compare
Choose a tag to compare
  • 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]

09 Oct 11:13
165dd25
Compare
Choose a tag to compare
  • chore!: support micromark v4

[email protected]

09 Oct 11:13
165dd25
Compare
Choose a tag to compare
  • chore!: update unist and mdast utils to those of unified v11

[email protected]

06 Jun 12:25
Compare
Choose a tag to compare
  • feat: add sideEffects hint (#85) (55faa88)
  • update: adjust code to micromark-extension-gfm-table v1.0.7 and micromark-util-types v1.1.0