@vscode/markdown-editor 0.0.2-40 → 0.0.2-41
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/dist/index.d.ts +36 -7
- package/dist/index.js +2200 -2092
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/src/view/editor.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/markdown-editor",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-41",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"@vscode/diff": "0.0.2-0",
|
|
77
77
|
"katex": "^0.16.33",
|
|
78
78
|
"micromark": "^4.0.1",
|
|
79
|
+
"micromark-extension-frontmatter": "^2.0.0",
|
|
79
80
|
"micromark-extension-gfm": "^3.0.0",
|
|
80
81
|
"micromark-extension-gfm-strikethrough": "^2.1.0",
|
|
81
82
|
"micromark-extension-gfm-table": "^2.1.1",
|
package/src/view/editor.css
CHANGED
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
|
|
168
168
|
/*
|
|
169
169
|
* An unhandled block: a construct the parser does not model (setext heading,
|
|
170
|
-
*
|
|
170
|
+
* an extension token). Its raw source is shown verbatim,
|
|
171
171
|
* styled like a code block but visibly flagged as "not understood" by a dashed
|
|
172
172
|
* warning border, so the content is preserved and editable rather than silently
|
|
173
173
|
* dropped.
|