built new beautifulsoup function to apply

html tags to markdown file once processed
with test cases.
This commit is contained in:
Anastasia Gradova
2024-01-03 22:01:07 -07:00
parent a884bef77b
commit 7a1d9cf705
5 changed files with 60 additions and 29 deletions

View File

@@ -3606,3 +3606,9 @@ def fake_markdown_file():
def fake_jinja_template():
input = "{% if True %}True{% endif %}"
return input
@pytest.fixture()
def fake_soup_template():
input = "<h1>Test</h1>"
return input