aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen
diff options
context:
space:
mode:
Diffstat (limited to 'lv2specgen')
-rwxr-xr-xlv2specgen/lv2specgen.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 9b4bf3d..f668018 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -129,15 +129,6 @@ def getComment(m, urinode):
if c.current():
markup = c.current().object.literal_value['string']
- # Replace urn:struct links with links to code documentation
- matches = re.findall('href="urn:struct:([^"]*)"', markup)
- if matches:
- for match in matches:
- struct_uri = os.path.join(doc_base, 'ns', 'doc', 'html',
- 'struct' + match.replace('_', '__') + '.html')
- markup = markup.replace('href="urn:struct:' + match + '"',
- 'href="' + struct_uri + '"')
-
rgx = re.compile('([^a-zA-Z0-9_:])(' + \
'|'.join(map(re.escape, linkmap)) + \
')([^a-aA-Z0-9_:])')
href='#n129'>129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169