diff options
author | David Robillard <d@drobilla.net> | 2011-03-11 19:06:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-11 19:06:15 +0000 |
commit | 4bd30095f0879d0ed77837caf80c1b8980c405e2 (patch) | |
tree | 3e95b9bc42338ccc9593fe748ba0776ae9883075 /lv2specgen/lv2specgen.py | |
parent | ee4c697a4577008e3dc4c4c143ca2d55dfac5913 (diff) | |
download | lv2-4bd30095f0879d0ed77837caf80c1b8980c405e2.tar.xz |
Remove style gunk from markup.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 5b8b2de..bb042db 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -220,9 +220,9 @@ def getTermLink(uri, subject=None, predicate=None): if subject != None and predicate != None: extra = 'about="%s" rel="%s" resource="%s"' % (str(subject.uri), niceName(str(predicate.uri)), uri) if (uri.startswith(spec_ns_str)): - return '<a href="#%s" style="font-family: monospace;" %s>%s</a>' % (uri.replace(spec_ns_str, ""), extra, niceName(uri)) + return '<a href="#%s" %s>%s</a>' % (uri.replace(spec_ns_str, ""), extra, niceName(uri)) else: - return '<a href="%s" style="font-family: monospace;" %s>%s</a>' % (uri, extra, niceName(uri)) + return '<a href="%s" %s>%s</a>' % (uri, extra, niceName(uri)) def rdfsClassInfo(term,m): |