Browse Source

Fixed typo.

grunfink 7 months ago
parent
commit
3f3e4892ff
1 changed files with 1 additions and 2 deletions
  1. 1 2
      html.c

+ 1 - 2
html.c

@@ -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;
 }