snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit dd318eb6b26b6ca7eccca5bb6377058a87d60f1d
parent b5f0b4ba2d45165cc2a70ac5d35d545cb039749d
Author: default <nobody@localhost>
Date:   Mon, 17 Mar 2025 08:27:38 +0100

Reverted the usage of _ for italics (they are causing problems).

Diffstat:
Mdoc/snac.5 | 2+-
Mformat.c | 7-------
2 files changed, 1 insertion(+), 8 deletions(-)

diff --git a/doc/snac.5 b/doc/snac.5 @@ -24,7 +24,7 @@ A special subset of Markdown is allowed, including: .It bold **text between two pairs of asterisks** .It italic -*text between a pair of asterisks* or _between a pair of underscores_ +*text between a pair of asterisks* .It strikethrough text ~~text between a pair of tildes~~ .It underlined text diff --git a/format.c b/format.c @@ -95,7 +95,6 @@ static xs_str *format_line(const char *line, xs_list **attach) "~~[^~]+~~" "|" "\\*\\*?\\*?[^\\*]+\\*?\\*?\\*" "|" ":.+:" "|" //emotes - "_[^_]+_" "|" //anzu "__[^_]+__" "|" //anzu "!\\[[^]]+\\]\\([^\\)]+\\)" "|" "\\[[^]]+\\]\\([^\\)]+\\)" "|" @@ -139,12 +138,6 @@ static xs_str *format_line(const char *line, xs_list **attach) xs *s2 = xs_fmt("<u>%s</u>", s1); s = xs_str_cat(s, s2); } - else - if (xs_startswith(v, "_")) { - xs *s1 = xs_strip_chars_i(xs_dup(v), "_"); - xs *s2 = xs_fmt("<i>%s</i>", s1); - s = xs_str_cat(s, s2); - } //anzu - end else if (xs_startswith(v, "~~")) {