aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc-src/index.py')
-rw-r--r--doc-src/index.py24
1 files changed, 1 insertions, 23 deletions
diff --git a/doc-src/index.py b/doc-src/index.py
index e6064e3a..9eb0ea2b 100644
--- a/doc-src/index.py
+++ b/doc-src/index.py
@@ -40,29 +40,7 @@ def example(s):
ns.example = example
-filt_help = []
-for i in filt.filt_unary:
- filt_help.append(
- ("~%s"%i.code, i.help)
- )
-for i in filt.filt_rex:
- filt_help.append(
- ("~%s regex"%i.code, i.help)
- )
-for i in filt.filt_int:
- filt_help.append(
- ("~%s int"%i.code, i.help)
- )
-filt_help.sort()
-filt_help.extend(
- [
- ("!", "unary not"),
- ("&", "and"),
- ("|", "or"),
- ("(...)", "grouping"),
- ]
-)
-ns.filt_help = filt_help
+ns.filt_help = filt.help
def nav(page, current, state):