@peaceroad/markdown-it-table-ex 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/index.js +279 -188
- package/package.json +8 -3
- package/test/examples.txt +0 -411
- package/test/examples_colgroup.txt +0 -380
- package/test/examples_colgroup_with_no_asterisk.txt +0 -88
- package/test/examples_wrapper.txt +0 -119
- package/test/examples_wrapper_with_caption.txt +0 -141
- package/test/test.js +0 -136
package/README.md
CHANGED
|
@@ -22,6 +22,10 @@ const md = mdit({ html: true }).use(mditMultimdTable, {
|
|
|
22
22
|
}).use(mditTableEx)
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
## StrongJa detection
|
|
26
|
+
|
|
27
|
+
When `@peaceroad/markdown-it-strong-ja` is registered, this plugin detects `**` markers by checking the inline rule named `strong_ja` and relies on inline tokens. If that rule is not present, it falls back to simple `**` string checks so matrix/colgroup still work without strongJa.
|
|
28
|
+
|
|
25
29
|
## Extended notation
|
|
26
30
|
|
|
27
31
|
### matrix
|
|
@@ -260,4 +264,4 @@ In this case, if you use a half-width `:`, you need to follow it with one or mor
|
|
|
260
264
|
</tr>
|
|
261
265
|
</tbody>
|
|
262
266
|
</table>
|
|
263
|
-
```
|
|
267
|
+
```
|