Add extra smartify test
This commit is contained in:
parent
9c7ef8f14e
commit
41312370a3
|
@ -80,6 +80,13 @@ class TestFilters < JekyllUnitTest
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
should "convert not convert markdown to block HTML elements" do
|
||||||
|
assert_equal(
|
||||||
|
"#hashtag", # NOT "<h1>hashtag</h1>"
|
||||||
|
@filter.smartify("#hashtag")
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
should "escapes special characters when configured to do so" do
|
should "escapes special characters when configured to do so" do
|
||||||
kramdown = make_filter_mock({ :kramdown => { :entity_output => :symbolic } })
|
kramdown = make_filter_mock({ :kramdown => { :entity_output => :symbolic } })
|
||||||
assert_equal(
|
assert_equal(
|
||||||
|
|
Loading…
Reference in New Issue