mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Fixed a bug in not_really_markdown() that confused code with pre markup.
This commit is contained in:
parent
ccb82367ad
commit
5dc26534b6
1 changed files with 1 additions and 2 deletions
3
format.c
3
format.c
|
@ -54,7 +54,7 @@ d_char *not_really_markdown(char *content, d_char **f_content)
|
||||||
while (xs_list_iter(&p, &v)) {
|
while (xs_list_iter(&p, &v)) {
|
||||||
if ((n & 0x1)) {
|
if ((n & 0x1)) {
|
||||||
/* markup */
|
/* markup */
|
||||||
if (xs_startswith(v, "`")) {
|
if (xs_startswith(v, "`") && v[1] != '\n') {
|
||||||
xs *s1 = xs_crop(xs_dup(v), 1, -1);
|
xs *s1 = xs_crop(xs_dup(v), 1, -1);
|
||||||
xs *s2 = xs_fmt("<code>%s</code>", s1);
|
xs *s2 = xs_fmt("<code>%s</code>", s1);
|
||||||
wrk = xs_str_cat(wrk, s2);
|
wrk = xs_str_cat(wrk, s2);
|
||||||
|
@ -77,7 +77,6 @@ d_char *not_really_markdown(char *content, d_char **f_content)
|
||||||
wrk = xs_str_cat(wrk, s1);
|
wrk = xs_str_cat(wrk, s1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
/* what the hell is this */
|
|
||||||
wrk = xs_str_cat(wrk, v);
|
wrk = xs_str_cat(wrk, v);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue