summaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-07-18 17:19:14 +0200
committerdefault <nobody@localhost>2024-07-18 17:19:14 +0200
commitf3b392e06a72cc1461ab2c9587c96991a2731e9c (patch)
treea14437db2e4b4563fc54ea9de579cc7f2ce8a156 /format.c
parentcd967285935c6a2a22e97a61cc4ed3f8074f2889 (diff)
Show bold+italic (text between ***) correctly.
Diffstat (limited to 'format.c')
-rw-r--r--format.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/format.c b/format.c
index c30fd5d..52edd05 100644
--- a/format.c
+++ b/format.c
@@ -88,9 +88,9 @@ static xs_str *format_line(const char *line, xs_list **attach)
/* split by markup */
xs *sm = xs_regex_split(line,
"("
- "`[^`]+`" "|"
- "\\*\\*?[^\\*]+\\*?\\*" "|"
- "\\[[^]]+\\]\\([^\\)]+\\)" "|"
+ "`[^`]+`" "|"
+ "\\*\\*?\\*?[^\\*]+\\*?\\*?\\*" "|"
+ "\\[[^]]+\\]\\([^\\)]+\\)" "|"
"https?:/" "/[^[:space:]]+"
")");
int n = 0;
@@ -106,6 +106,12 @@ static xs_str *format_line(const char *line, xs_list **attach)
s = xs_str_cat(s, s2);
}
else
+ if (xs_startswith(v, "***")) {
+ xs *s1 = xs_crop_i(xs_dup(v), 3, -3);
+ xs *s2 = xs_fmt("<b><i>%s</i></b>", s1);
+ s = xs_str_cat(s, s2);
+ }
+ else
if (xs_startswith(v, "**")) {
xs *s1 = xs_crop_i(xs_dup(v), 2, -2);
xs *s2 = xs_fmt("<b>%s</b>", s1);