markdown-it-multimd-table icon indicating copy to clipboard operation
markdown-it-multimd-table copied to clipboard

Multimarkdown table syntax plugin for markdown-it markdown parser

Results 9 markdown-it-multimd-table issues
Sort by recently updated
recently updated
newest added

I'd like a table within `` to get consistent indentation. Markdown source: ```markdown - XXXXXXXX |abc|abc| |---|---| |abc|abc| ``` Without multimd-table: ```html XXXXXXXX abcabc abcabc ``` With multimd-table: ```html XXXXXXXX...

https://github.com/RedBug312/markdown-it-multimd-table/blob/2570107cbf7c595057156cece284f1c8e468d40b/index.js#L61 This rule makes all title with no ascii alphabets to have an empty id, which makes it hard to refrence them. For example ![图片](https://user-images.githubusercontent.com/13471233/94226105-513e4980-ff29-11ea-9d33-795fa874670f.png)

feature request

For the following: ``` x | x -----------|----------- test1 | test2 \ | \ | test3 ``` v3.1.3 produces: ![image](https://user-images.githubusercontent.com/44394662/110790053-dc5d9280-8270-11eb-849a-ebfd8225bd01.png) whereas v4.0.3 gives: ![image](https://user-images.githubusercontent.com/44394662/110790151-f7c89d80-8270-11eb-867b-d9eb8a092c43.png) Is it a regression bug or...

help wanted

Hello. The plugin breaks the following behavior (See: [Table inside of list is rendered incorrectly #325](https://github.com/markdown-it/markdown-it/issues/325)): [Example from markdown-it page](https://markdown-it.github.io/#md3=%7B%22source%22%3A%22-%20list%20item%5Cn%20%20%20%20%5Cn%20%20%20%20%7C%20Col1%20%20%7C%20Col2%20%7C%5Cn%20%20%20%20%7C%20-----%20%7C%20----%20%7C%5Cn%20%20%20%20%7C%20Col1%20%20%7C%20Col2%20%7C%22%2C%22defaults%22%3A%7B%22html%22%3Afalse%2C%22xhtmlOut%22%3Afalse%2C%22breaks%22%3Afalse%2C%22langPrefix%22%3A%22language-%22%2C%22linkify%22%3Atrue%2C%22typographer%22%3Atrue%2C%22_highlight%22%3Atrue%2C%22_strict%22%3Afalse%2C%22_view%22%3A%22html%22%7D%7D) ```md - list item | Col1 | Col2 | |...

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.16.10 to 7.23.2. Release notes Sourced from @​babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...

dependencies

Hello! It seems that in case of multiline header your plug-in somehow miss to add `thead_close` and thus it crash `markdown-it-attrs`. But in case multiline on `tbody` everything is ok....

Hi, Right now if you want to do no text wrapping in a table you'd have to wrap your content in a span to do this. In bootstrap that would...

Hi, I'm building a markdown-it renderer with your plugin. It all renders in a GUI that uses the bootstrap theme. Bootstrap defaults captions to `caption-side: bottom;` Given your current code...

Hi, Is there a (easy?) way to convert this project into and ESM module?