Browse Source

Cleaned up a bit

Josh Yelon 20 years ago
parent
commit
2c2fd1a17f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      direct/src/directscripts/gendocs.py

+ 2 - 2
direct/src/directscripts/gendocs.py

@@ -641,11 +641,11 @@ def generateFunctionDocs(code, method):
     proto = code.getFunctionPrototype(method)
     comment = code.getFunctionComment(method)
     if (comment == ""): comment = "Undocumented function.<br>\n"
-    chunk = '<table class="codecomment1" width="100%"><tr><td>' + "\n"
+    chunk = '<table bgcolor="e8e8e8" border=0 cellspacing=0 cellpadding=5 width="100%"><tr><td>' + "\n"
     chunk = chunk + '<a name="' + name + '"><b>' + name + "</b></a><br>\n"
     chunk = chunk + proto + "<br>\n"
     chunk = chunk + comment
-    chunk = chunk + "</td></tr></table>\n"
+    chunk = chunk + "</td></tr></table><br>\n"
     return chunk
 
 def generateLinkTable(table, cols, urlprefix, urlsuffix):