mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
format.c: Encode all HTML characters when we're in pre element until we are out.
Signed-off-by: Yonle <yonle@lecturify.net>
This commit is contained in:
parent
5672fe2cc6
commit
7710ca76a0
1 changed files with 11 additions and 3 deletions
14
format.c
14
format.c
|
@ -56,7 +56,8 @@ static xs_str *format_line(const char *line, xs_list **attach)
|
||||||
/* markup */
|
/* markup */
|
||||||
if (xs_startswith(v, "`")) {
|
if (xs_startswith(v, "`")) {
|
||||||
xs *s1 = xs_crop_i(xs_dup(v), 1, -1);
|
xs *s1 = xs_crop_i(xs_dup(v), 1, -1);
|
||||||
xs *s2 = xs_fmt("<code>%s</code>", s1);
|
xs *e1 = encode_html(s1);
|
||||||
|
xs *s2 = xs_fmt("<code>%s</code>", e1);
|
||||||
s = xs_str_cat(s, s2);
|
s = xs_str_cat(s, s2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -134,8 +135,15 @@ xs_str *not_really_markdown(const char *content, xs_list **attach)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_pre)
|
if (in_pre) {
|
||||||
ss = xs_dup(v);
|
// Encode all HTML characters when we're in pre element until we are out.
|
||||||
|
ss = encode_html(xs_dup(v));
|
||||||
|
|
||||||
|
s = xs_str_cat(s, ss);
|
||||||
|
s = xs_str_cat(s, "<br>");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
ss = xs_strip_i(format_line(v, attach));
|
ss = xs_strip_i(format_line(v, attach));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue