Test all the things

This commit is contained in:
Pat Hawks
2016-01-08 17:10:36 -08:00
parent acb2263f51
commit ddf640e6bd
2 changed files with 28 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
class Kramdown::Parser::SmartyPants < Kramdown::Parser::Kramdown
def initialize(source, options)
super
@block_parsers = []
@span_parsers = [:smart_quotes, :html_entity, :typographic_syms, :escaped_chars]
@block_parsers = [:block_html]
@span_parsers = [:smart_quotes, :html_entity, :typographic_syms, :span_html]
end
end