Index of keywords.
()
| 2562 | return 'Topics', contents |
| 2563 | |
| 2564 | def html_keywords(): |
| 2565 | """Index of keywords.""" |
| 2566 | heading = html.heading( |
| 2567 | '<strong class="title">INDEX</strong>', |
| 2568 | ) |
| 2569 | names = sorted(Helper.keywords.keys()) |
| 2570 | |
| 2571 | def bltinlink(name): |
| 2572 | return '<a href="topic?key=%s">%s</a>' % (name, name) |
| 2573 | |
| 2574 | contents = html.multicolumn(names, bltinlink) |
| 2575 | contents = heading + html.bigsection( |
| 2576 | 'Keywords', 'index', contents) |
| 2577 | return 'Keywords', contents |
| 2578 | |
| 2579 | def html_topicpage(topic): |
| 2580 | """Topic or keyword help page.""" |
no test coverage detected
searching dependent graphs…