Skip to content

Commit

Permalink
change formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xufangt committed Nov 29, 2023
1 parent a0790eb commit d1084a4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tests/test_md.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@
#### Headline 4 / 2"""


def test_():
tests = [('## Basic list','Basic list'),
('* fruit', 'fruit'),
('> A single quote', 'A single quote'),
('[Link text Here](https://link-url-here.org)','Link text Here')]
tests = [
("## Basic list", "Basic list"),
("* fruit", "fruit"),
("> A single quote", "A single quote"),
("[Link text Here](https://link-url-here.org)", "Link text Here"),
]
for md_text, text in tests:
assert extract_text_from_markdown(md_text) == text

Expand Down

0 comments on commit d1084a4

Please sign in to comment.