From 8ede4954655df56ee9a622cdfda2e8277ab4d2b2 Mon Sep 17 00:00:00 2001 From: Amin Persia Date: Sun, 1 Dec 2024 15:08:52 -0800 Subject: [PATCH] enables table merge feature #220 --- VERSION | 2 +- index.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 01c08cf..3116087 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.68 +1.0.69 diff --git a/index.php b/index.php index e4222c1..d1ffa73 100644 --- a/index.php +++ b/index.php @@ -31,6 +31,9 @@ $DOC=new Document(DOC); // initialize markdown parser $PARSER=new ParsedownPlus([ + 'tables' => [ + 'tablespan' => true, + ], 'safemode' => true, // enable parsedown's built-in safe mode 'typographer' => true, 'toc' => true,