X-Git-Url: http://nitlanguage.org diff --git a/src/nitdoc.nit b/src/nitdoc.nit index 6e685b6..50bd192 100644 --- a/src/nitdoc.nit +++ b/src/nitdoc.nit @@ -634,7 +634,7 @@ redef class MMModule dctx.add("{m.html_link(dctx)}::") end dctx.add("{self.name}\n") - + dctx.add("
") dctx.add("
\n") var doc = doc @@ -643,6 +643,7 @@ redef class MMModule dctx.add("
{doc.to_html}
\n") dctx.add("\n") dctx.add("CancelCommit") + dctx.add("
")
 			dctx.add("\n")
 		end
 
@@ -1095,7 +1096,7 @@ redef class MMLocalProperty
 			dctx.add("::{html_name}")
 		end
 		dctx.add("")
-
+		dctx.add("
") dctx.add("
") # Collect all refinement of the global property in the same global property @@ -1114,6 +1115,7 @@ redef class MMLocalProperty dctx.add("
{global.intro.doc.to_html}
") dctx.add("") dctx.add("CancelCommit") + dctx.add("
")
 		end
 
 		var tlmods = new Array[MMModule]
@@ -1159,6 +1161,7 @@ redef class MMLocalProperty
 			end
 			dctx.add("")
 			dctx.add("CancelCommit")
+			dctx.add("
")
 			dctx.add("

") if tlp.local_class.global != lc.global then dctx.add("inherited from {tlp.local_class.html_link(dctx)} ") @@ -1437,7 +1440,7 @@ redef class MMLocalClass dctx.add("(unexported) ") end dctx.add("{kind} {global.intro.mmmodule.toplevel_owner.html_link(dctx)}::{name}

") - + dctx.add("
") dctx.add("
\n") var doc = doc if doc != null then @@ -1445,6 +1448,7 @@ redef class MMLocalClass dctx.add("
{doc.to_html}
\n") dctx.add("") dctx.add("CancelCommit") + dctx.add("
")
 		end
 
 		var cla = new HashSet[MMLocalClass]