Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
ggdgsdbsdbbb
/
highlight
/
markdown_test.v
8
lines
·
6
sloc
·
209 bytes
·
704ec3895e0beeff87c7e0a8619aa5cbed4302bd
Raw
1
module
highlight
2
3
const
markdown =
'<script> alert(true) </script> <!-- comment -->test'
4
const
html =
'<p>test</p>'
5
6
fn
test_convert_markdown_to_html() {
7
assert convert_markdown_to_html(markdown) == html
8
}
9