diff --git a/markdown-it/info.json b/markdown-it/info.json index 8202cea..3a1ec45 100644 --- a/markdown-it/info.json +++ b/markdown-it/info.json @@ -3,8 +3,8 @@ "identifier": "markdown-it", "script": "markdown-it.qml", "resources": ["markdown-it.js"], - "authors": ["@milan-rusev"], - "version": "1.0.1", + "authors": ["@milan-rusev", "@pbek"], + "version": "1.1.0", "minAppVersion": "17.08.2", "description" : "This script replaces the default markdown renderer with markdown-it.\n\nDependencies\nmarkdown-it.js (v8.3.2 bundled with the script)\n\nUsage\nFor the possible configuration options check here." } diff --git a/markdown-it/markdown-it.qml b/markdown-it/markdown-it.qml index 06dfd0b..4047b5a 100644 --- a/markdown-it/markdown-it.qml +++ b/markdown-it/markdown-it.qml @@ -83,7 +83,7 @@ QtObject { //Get original styles var head = html.match(new RegExp("
(?:.|\n)*?"))[0]; //Add custom styles - head = head.replace("", customStylesheet + ""); + head = head.replace("", "table {border-spacing: 0; border-style: solid; border-width: 1px; border-collapse: collapse;}" + customStylesheet + ""); mdHtml = ""+head+""+mdHtml+""; diff --git a/markdown-it/patches/0001-modified-markdown-it-to-use-no-cellspacing-for-table.patch b/markdown-it/patches/0001-modified-markdown-it-to-use-no-cellspacing-for-table.patch new file mode 100644 index 0000000..defce26 --- /dev/null +++ b/markdown-it/patches/0001-modified-markdown-it-to-use-no-cellspacing-for-table.patch @@ -0,0 +1,25 @@ +From bf476454ec3e7b6432f88c20f43c1f33ba76acf0 Mon Sep 17 00:00:00 2001 +From: Patrizio Bekerle