replace <br>,<br/> and <br />
This commit is contained in:
parent
b42153d158
commit
98d7d17ad5
3
dunst.c
3
dunst.c
@ -343,6 +343,9 @@ char
|
||||
/* remove tags */
|
||||
str = string_replace("<b>", "", str);
|
||||
str = string_replace("</b>", "", str);
|
||||
str = string_replace("<br>", " ", str);
|
||||
str = string_replace("<br/>", " ", str);
|
||||
str = string_replace("<br />", " ", str);
|
||||
str = string_replace("<i>", "", str);
|
||||
str = string_replace("</i>", "", str);
|
||||
str = string_replace("<u>", "", str);
|
||||
|
Loading…
x
Reference in New Issue
Block a user