--- desc: Corner cases unspecified in standard --- Multiple backticks inside inline code . |Shorthands|Functions|Rendered| |----------|---------|--------| |` `` `|`\textquotedblleft`|“| |` '' `|`\textquotedblright`|”| .
Shorthands Functions Rendered
`` \textquotedblleft
'' \textquotedblright
. Multiple backticks as table contents . |Single|Double|Triple|Quadruple|Pentuple|Hextuple|Septuple| |------|------|------|---------|--------|--------|--------| |\`|``|```|````|`````|``````|```````| .
Single Double Triple Quadruple Pentuple Hextuple Septuple
` `` ``` ```` ````` `````` ```````
. [Issue #1](github.com/RedBug312/markdown-it-multimd-table/issues/1) Indented code disabled in table data row . A | B ------|-- 0|1 .
A B
0 1
. Indented code disabled in table header row . A|B -----:|:- 0|1 .
A B
0 1
. Indented code enabled in separator . A|B -:|:- 0|1 .
 A|B
-:|:-
 0|1
. [Issue #24](github.com/RedBug312/markdown-it-multimd-table/issues/24) Trailing pipes followed with trailing spaces . A|B| -|-| 0|1| .
A B
0 1
. No trailing pipes but trailing spaces . A|B -|- 0|1 .
A B
0 1
. [Issue #32](github.com/RedBug312/markdown-it-multimd-table/issues/32) Table indented under lists with empty line . - list item | Col1 | Col2 | | ----- | ---- | | Col1 | Col2 | . . Table indented under lists without empty line . - list item | Col1 | Col2 | | ----- | ---- | | Col1 | Col2 | . .