1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vdoc/html_tag_escape_test.v

7 lines
141 B
V

module main
fn test_html_tag_escape() {
assert html_tag_escape('<abc>') == '&lt;abc&gt;'
assert html_tag_escape('`<abc>`') == '`<abc>`'
}