1
0
Fork 0
mirror of https://github.com/marty-oehme/scripts.git synced 2025-12-11 06:22:45 +00:00

added patch to disable cellspacing and added css style for table borders

This commit is contained in:
Patrizio Bekerle 2018-11-12 17:07:52 +01:00
parent bf476454ec
commit d0549136ff
No known key found for this signature in database
GPG key ID: 2E9FFD770DABE838
3 changed files with 28 additions and 3 deletions

View file

@ -0,0 +1,25 @@
From bf476454ec3e7b6432f88c20f43c1f33ba76acf0 Mon Sep 17 00:00:00 2001
From: Patrizio Bekerle <patrizio@bekerle.com>
Date: Mon, 12 Nov 2018 17:02:17 +0100
Subject: [PATCH] modified markdown-it to use no cellspacing for tables
---
markdown-it/markdown-it.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/markdown-it/markdown-it.js b/markdown-it/markdown-it.js
index cedb788..54c4940 100644
--- a/markdown-it/markdown-it.js
+++ b/markdown-it/markdown-it.js
@@ -4053,7 +4053,7 @@ module.exports = function table(state, startLine, endLine, silent) {
if (silent) { return true; }
- token = state.push('table_open', 'table', 1);
+ token = state.push('table_open', 'table cellspacing="0"', 1);
token.map = tableLines = [ startLine, 0 ];
token = state.push('thead_open', 'thead', 1);
--
2.19.1