From fef86182716fe38eff69a2c1aa915d620f2476ec Mon Sep 17 00:00:00 2001 From: Raekye Date: Sun, 9 Dec 2018 20:10:09 -0500 Subject: [PATCH] disable tables --- lib/kramdown/parser/kramdown.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/kramdown/parser/kramdown.rb b/lib/kramdown/parser/kramdown.rb index 75455225..d9434fbc 100644 --- a/lib/kramdown/parser/kramdown.rb +++ b/lib/kramdown/parser/kramdown.rb @@ -74,7 +74,8 @@ def initialize(source, options) @block_parsers = [:blank_line, :codeblock, :codeblock_fenced, :blockquote, :atx_header, :horizontal_rule, :list, :definition_list, :block_html, :setext_header, - :block_math, :table, :footnote_definition, :link_definition, :abbrev_definition, + #:block_math, :table, :footnote_definition, :link_definition, :abbrev_definition, + :block_math, :footnote_definition, :link_definition, :abbrev_definition, :block_extensions, :eob_marker, :paragraph] @span_parsers = [:emphasis, :codespan, :autolink, :span_html, :footnote_marker, :link, :smart_quotes, :inline_math, :span_extensions, :html_entity, :typographic_syms, :line_break, :escaped_chars]