mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
html.c: invalid html tag: else? just show it as encoded text.
Signed-off-by: Yonle <yonle@lecturify.net>
This commit is contained in:
parent
98c72db17c
commit
7e40e0d783
1 changed files with 4 additions and 0 deletions
4
format.c
4
format.c
|
@ -226,6 +226,10 @@ xs_str *sanitize(const char *content)
|
|||
v[1] == '/' ? "/" : "", tag, xs_list_len(el) ? " " : "", s3);
|
||||
|
||||
s = xs_str_cat(s, s2);
|
||||
} else {
|
||||
/* else? just show it with encoded code.. that's it. */
|
||||
xs *el = encode_html(v);
|
||||
s = xs_str_cat(s, el);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue