diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-05-21 14:43:22 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-05-21 14:44:21 +0200 |
commit | 271e3952013c317d6e24bafced45f56abffe8074 (patch) | |
tree | 213f1be3cfd4bb6c4038deef987a2c9c7b83a3e1 /doc/docgen.py | |
parent | 4f5c7c8b68a93a47f0fea8831ba0c59669cef54f (diff) | |
download | weechat-271e3952013c317d6e24bafced45f56abffe8074.zip |
doc: add note about "list" options for curl in function hook_process_hashtable (plugin API reference)
Diffstat (limited to 'doc/docgen.py')
-rw-r--r-- | doc/docgen.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/docgen.py b/doc/docgen.py index 6ebca43ca..7d8b8c0b6 100644 --- a/doc/docgen.py +++ b/doc/docgen.py @@ -720,8 +720,9 @@ def docgen_cmd_cb(data, buf, args): doc.write('[width="100%",cols="2,^1,7",options="header"]\n') doc.write('|===\n') doc.write('| {0} | {1} | {2}\n\n' - ''.format(_('Option'), _('Type'), - _('Constants') + ' ^(1)^')) + ''.format(_('Option'), + _('Type') + ' ^(1)^', + _('Constants') + ' ^(2)^')) for option in url_options: constants = option['constants'] if constants: |