lib/isodoc/function/to_word_html.rb in isodoc-1.0.9 vs lib/isodoc/function/to_word_html.rb in isodoc-1.0.10
- old
+ new
@@ -191,18 +191,17 @@
when "sub" then sub_parse(node, out)
when "tt" then tt_parse(node, out)
when "strike" then strike_parse(node, out)
when "keyword" then keyword_parse(node, out)
when "smallcap" then smallcap_parse(node, out)
- when "br" then out.br
- when "hr" then out.hr
+ when "br" then br_parse(node, out)
+ when "hr" then hr_parse(node, out)
when "bookmark" then bookmark_parse(node, out)
when "pagebreak" then page_break(out)
when "callout" then callout_parse(node, out)
when "stem" then stem_parse(node, out)
when "clause" then clause_parse(node, out)
- #when "appendix" then clause_parse(node, out)
when "xref" then xref_parse(node, out)
when "eref" then eref_parse(node, out)
when "origin" then eref_parse(node, out)
when "link" then link_parse(node, out)
when "ul" then ul_parse(node, out)
@@ -247,9 +246,10 @@
when "description" then requirement_component_parse(node, out)
when "specification" then requirement_component_parse(node, out)
when "measurement-target" then requirement_component_parse(node, out)
when "verification" then requirement_component_parse(node, out)
when "import" then requirement_component_parse(node, out)
+ when "index" then index_parse(node, out)
else
error_parse(node, out)
end
end
end