X-Git-Url: http://nitlanguage.org diff --git a/src/nitlight.nit b/src/nitlight.nit index 9a7b050..f23bcd3 100644 --- a/src/nitlight.nit +++ b/src/nitlight.nit @@ -52,13 +52,15 @@ else if mmodules.length > 1 then end for mm in mmodules do - if dir != null then toolcontext.info("write {dir}/{mm.name}.html", 1) + if dir != null then toolcontext.info("write {dir}/{mm.c_name}.html", 1) var v = new HighlightVisitor var prefix = opt_line_id_prefix.value if prefix != null then v.line_id_prefix = prefix.trim end + v.include_loose_tokens = true + v.include_whole_lines = true if opt_first_line.value != 0 then v.first_line = opt_first_line.value if opt_last_line.value != 0 then v.last_line = opt_last_line.value @@ -94,7 +96,7 @@ for mm in mmodules do end if dir != null then - page.write_to_file("{dir}/{mm.name}.html") + page.write_to_file("{dir}/{mm.c_name}.html") else page.write_to(stdout) end @@ -113,8 +115,8 @@ if dir != null then var n2 = new HTMLTag("a") page.add n n.add n2 - n2.attr("href", "{mm.name}.html") - n2.text(mm.name) + n2.attr("href", "{mm.c_name}.html") + n2.text(mm.full_name) end page.add_raw_html "" page.write_to_file("{dir}/index.html")