Method: IsoDoc::HtmlFunction::Html#toclevel
- Defined in:
- lib/isodoc/html_function/html.rb
#toclevel ⇒ Object
94 95 96 97 98 99 100 101 |
# File 'lib/isodoc/html_function/html.rb', line 94 def toclevel "function toclevel() { var i; var text = \"\";\n for(i = 1; i <= \#{@htmlToClevels}; i++) {\n if (i > 1) { text += \",\"; } text += \"h\" + i + \":not(:empty):not(.TermNum)\"; } \n return text;}\n HEAD\nend\n".freeze |