diff options
| author | shtrophic <christoph@liebender.dev> | 2025-03-20 22:54:56 +0100 |
|---|---|---|
| committer | shtrophic <christoph@liebender.dev> | 2025-03-20 22:54:56 +0100 |
| commit | 0aeebc177f7f40cd583c65a085c51a9398995135 (patch) | |
| tree | 7d4c79b675b612ffd16b645f2014dfc9c231c25c /format.c | |
| parent | 398b733b2c0ff4c96f4de9731a864373842e86d6 (diff) | |
| parent | bd9e9b71d7e039cc2ed971b5f2d54e6553440210 (diff) | |
Merge tag '2.74' into curl-smtp
Version 2.74 RELEASED.
Diffstat (limited to 'format.c')
| -rw-r--r-- | format.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -94,7 +94,6 @@ static xs_str *format_line(const char *line, xs_list **attach) "`[^`]+`" "|" "~~[^~]+~~" "|" "\\*\\*?\\*?[^\\*]+\\*?\\*?\\*" "|" - "_[^_]+_" "|" //anzu "__[^_]+__" "|" //anzu "!\\[[^]]+\\]\\([^\\)]+\\)" "|" "\\[[^]]+\\]\\([^\\)]+\\)" "|" @@ -138,12 +137,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, "~~")) { |