Index of keywords.
()
| 2610 | return 'Topics', contents |
| 2611 | |
| 2612 | def html_keywords(): |
| 2613 | """Index of keywords.""" |
| 2614 | heading = html.heading( |
| 2615 | '<strong class="title">INDEX</strong>', |
| 2616 | ) |
| 2617 | names = sorted(Helper.keywords.keys()) |
| 2618 | |
| 2619 | def bltinlink(name): |
| 2620 | return '<a href="topic?key=%s">%s</a>' % (name, name) |
| 2621 | |
| 2622 | contents = html.multicolumn(names, bltinlink) |
| 2623 | contents = heading + html.bigsection( |
| 2624 | 'Keywords', 'index', contents) |
| 2625 | return 'Keywords', contents |
| 2626 | |
| 2627 | def html_topicpage(topic): |
| 2628 | """Topic or keyword help page.""" |
no test coverage detected