@fileverse-dev/ddoc 2.1.1-patch-12 → 2.1.1-patch-13
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.es.js +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -109188,7 +109188,7 @@ const jut = ln.create({
|
|
109188
109188
|
}
|
109189
109189
|
});
|
109190
109190
|
function Iut(t) {
|
109191
|
-
return t.match(/^#{1,6}\s/) !== null || // Headings
|
109191
|
+
return t.match(/\$\$[^$]*\$\$/g) !== null || t.match(/\$[^$\n]*\$/g) !== null ? !1 : t.match(/^#{1,6}\s/) !== null || // Headings
|
109192
109192
|
t.startsWith("*") || t.startsWith("-") || t.startsWith(">") || t.startsWith("```") || t.match(/\[.*\]\(.*\)/) !== null || // Links
|
109193
109193
|
t.match(/!\[.*\]\(.*\)/) !== null || // Images
|
109194
109194
|
t.match(/\*\*(.*?)\*\*/g) !== null || // Bold
|