ggdgsdbsdbbb / highlight / markdown_test.v
8 lines · 6 sloc · 209 bytes · 704ec3895e0beeff87c7e0a8619aa5cbed4302bd
Raw
1module highlight
2
3const markdown = '<script> alert(true) </script> <!-- comment -->test'
4const html = '<p>test</p>'
5
6fn test_convert_markdown_to_html() {
7 assert convert_markdown_to_html(markdown) == html
8}
9