From 69c37e5c55a86e11cf162bd3182aa024b0d2b89f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 5 Feb 2012 22:14:21 +0100 Subject: [PATCH] Tools.Standalone.autodoc_to_split_html: Parse methods in XML-mode. --- .../Tools.pmod/Standalone.pmod/autodoc_to_split_html.pike | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/Tools.pmod/Standalone.pmod/autodoc_to_split_html.pike b/lib/modules/Tools.pmod/Standalone.pmod/autodoc_to_split_html.pike index 8d2847236d..3eeecb6184 100644 --- a/lib/modules/Tools.pmod/Standalone.pmod/autodoc_to_split_html.pike +++ b/lib/modules/Tools.pmod/Standalone.pmod/autodoc_to_split_html.pike @@ -193,7 +193,7 @@ class Node array names = ({}); Parser.HTML parser = Parser.HTML(); parser->case_insensitive_tag(1); - parser->xml_tag_syntax(0); + parser->xml_tag_syntax(3); parser->add_tag("method", lambda(Parser.HTML p, mapping m) { names += ({ Parser.parse_html_entities(m->name) }); -- GitLab