""" Test whitelisting/blacklisting of specific tags. """ from markdownify import markdownify as md def test_strip(): text = md('Some Text', strip=['a']) assert text == 'Some Text' def test_do_not_strip(): text = md('Some Text', strip=[]) assert text == '[Some Text](https://github.com/matthewwithanm)' def test_convert(): text = md('Some Text', convert=['a']) assert text == '[Some Text](https://github.com/matthewwithanm)' def test_do_not_convert(): text = md('Some Text', convert=[]) assert text == 'Some Text'