diff options
| author | grunfink <grunfink@comam.es> | 2026-01-12 18:08:34 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-01-12 18:08:34 +0100 |
| commit | 3f3e4892ff0d0c46b49cae88e7e74ba5c6c11a3b (patch) | |
| tree | 9081bf5417ae7b0c8c737770f2cc1e6d7f6fbd0a | |
| parent | 76bb42fa09dd4b1d74dda70e59dbc5d9f1681422 (diff) | |
Fixed typo.
| -rw-r--r-- | html.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -182,8 +182,7 @@ xs_str *actor_pronouns(xs_dict *actor) } /* strip all HTML tags */ - ret = xs_regex_replace(pronouns, "</?[>]+>", ""); - + ret = xs_regex_replace(pronouns, "</?[^>]+>", ""); return ret; } |