mirror of
https://github.com/makeworld-the-better-one/md2gemini
synced 2025-04-05 06:19:06 +02:00
43 lines
977 B
Python
43 lines
977 B
Python
from .util import normalize
|
|
from md2gemini import md2gemini
|
|
|
|
|
|
def f(md):
|
|
return normalize(md2gemini(md, strip_html=True))
|
|
|
|
|
|
def test_keep_bold():
|
|
md = "Sentence with **bold** in it."
|
|
gem = "Sentence with **bold** in it."
|
|
assert f(md) == gem
|
|
|
|
|
|
def test_keep_bold_2():
|
|
md = "Sentence with __bold__ in it."
|
|
gem = "Sentence with **bold** in it."
|
|
assert f(md) == gem
|
|
|
|
|
|
def test_keep_italics():
|
|
md = "Sentence with *italics* in it."
|
|
gem = "Sentence with *italics* in it."
|
|
assert f(md) == gem
|
|
|
|
|
|
def test_keep_italics_2():
|
|
md = "Sentence with _italics_ in it."
|
|
gem = "Sentence with *italics* in it."
|
|
assert f(md) == gem
|
|
|
|
|
|
def test_remove_inline_html():
|
|
md = "<i>test1</i> <b>test2</b> <em>test3</em> <made-up>test4</made-up>"
|
|
gem = "test1 test2 test3 test4"
|
|
assert f(md) == gem
|
|
|
|
|
|
def test_remove_html_block():
|
|
md = "<div>\n<tag>html is here</tag>\n</div>\n\nText after"
|
|
gem = "Text after"
|
|
assert f(md) == gem
|