mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Support --html --sax
This commit is contained in:
parent
225ed70737
commit
3ac214f01e
18
xmllint.c
18
xmllint.c
@ -1363,6 +1363,24 @@ testSAX(const char *filename) {
|
||||
}
|
||||
xmlSchemaFreeValidCtxt(vctxt);
|
||||
} else
|
||||
#endif
|
||||
#ifdef LIBXML_HTML_ENABLED
|
||||
if (html) {
|
||||
htmlParserCtxtPtr ctxt = NULL;
|
||||
|
||||
ctxt = htmlNewSAXParserCtxt(handler, (void *) user_data);
|
||||
if (ctxt == NULL) {
|
||||
progresult = XMLLINT_ERR_MEM;
|
||||
return;
|
||||
}
|
||||
|
||||
if (strcmp(filename, "-") == 0)
|
||||
htmlCtxtReadFd(ctxt, STDIN_FILENO, "-", NULL, options);
|
||||
else
|
||||
htmlCtxtReadFile(ctxt, filename, NULL, options);
|
||||
|
||||
htmlFreeParserCtxt(ctxt);
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
xmlParserCtxtPtr ctxt = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user