diff options
author | David Robillard <d@drobilla.net> | 2011-03-09 21:53:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-09 21:53:21 +0000 |
commit | 7c7e2d5a401fd6a14006c61961350d19be8cad81 (patch) | |
tree | 6613d2da18b2b14f6c0abd1e3d4c4e9baa530414 /lv2specgen/lv2specgen.py | |
parent | 4c7ffdc602622e9c019abdc86e9c6c36ea1f4a76 (diff) | |
download | lv2-7c7e2d5a401fd6a14006c61961350d19be8cad81.tar.xz |
Tweak documentation style.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index b872385..1ab6515 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -422,7 +422,8 @@ def docTerms(category, list, m): label = getLabel(m, term) comment = getComment(m, term) - + + doc += '<div class="spectermbody">' if label!='' or comment != '': doc += '<div class="description">' @@ -449,7 +450,8 @@ def docTerms(category, list, m): if (len(terminfo)>0): #to prevent empty list (bug #882) doc += '\n<dl class="terminfo">%s</dl>\n' % terminfo - doc += "\n\n</div>\n\n" + doc += '</div>' + doc += "\n</div>\n\n" return doc |