diff options
Diffstat (limited to 'ext/fts5/extract_api_docs.tcl')
-rw-r--r-- | ext/fts5/extract_api_docs.tcl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/fts5/extract_api_docs.tcl b/ext/fts5/extract_api_docs.tcl index 6762a036d..634dc70cb 100644 --- a/ext/fts5/extract_api_docs.tcl +++ b/ext/fts5/extract_api_docs.tcl @@ -108,8 +108,11 @@ proc get_tokenizer_docs {data} { append res "<dt><b>$line</b></dt><dd><p style=margin-top:0>\n" continue } + if {[regexp {FTS5_TOKENIZER} $line]} { + set line </dl><p> + } if {[regexp {SYNONYM SUPPORT} $line]} { - set line "</dl><h3>Synonym Support</h3>" + set line "<h3>Synonym Support</h3>" } if {[string trim $line] == ""} { append res "<p>\n" |