add links to the overview sections in reference documentation
This commit is contained in:
parent
f824530ce2
commit
e996e1636f
|
@ -800,6 +800,9 @@ libtorrent reference documentation
|
|||
for cat in categories:
|
||||
print >>out, '%s' % heading(cat, '-')
|
||||
|
||||
if 'overview' in categories[cat]:
|
||||
print >>out, '| overview__'
|
||||
|
||||
category_filename = categories[cat]['filename'].replace('.rst', '.html')
|
||||
for c in categories[cat]['classes']:
|
||||
print >>out, '| ' + print_link(c['name'], symbols[c['name']])
|
||||
|
@ -810,6 +813,8 @@ for cat in categories:
|
|||
print >>out, '| ' + print_link(e['name'], symbols[e['name']])
|
||||
print >>out, ''
|
||||
|
||||
if 'overview' in categories[cat]:
|
||||
print >>out, '__ %s#overview' % categories[cat]['filename'].replace('.rst', '.html')
|
||||
print >>out, dump_link_targets()
|
||||
|
||||
out.write('''
|
||||
|
|
Loading…
Reference in New Issue