aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-06-27 20:56:17 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 06:55:04 +0200
commitea043d4979f8d60a7ebd8239ccb272ae3ac70fc1 (patch)
tree856162e9bb9bd338ebc7598ec31176b111cde268
parent5f968f9b788ff997c21d5463394db2a975d55ed2 (diff)
no error on custom tags
-rw-r--r--src/HtmlSearch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/HtmlSearch.c b/src/HtmlSearch.c
index abb04d6..8a6352e 100644
--- a/src/HtmlSearch.c
+++ b/src/HtmlSearch.c
@@ -104,6 +104,7 @@ static int quickmedia_html_find_nodes(QuickMediaHtmlSearch *self, QuickMediaNode
int quickmedia_html_search_init(QuickMediaHtmlSearch *self, const char *html_source) {
self->doc = tidyCreate();
tidyOptSetBool(self->doc, TidyShowWarnings, no);
+ tidyOptSetBool(self->doc, TidyUseCustomTags, yes);
/* tidyOptSetBool(self->doc, TidyForceOutput, yes); */
if(tidyParseString(self->doc, html_source) < 0) {
tidyRelease(self->doc);