Categorical Index Of SQLite Documents

hd_keywords {categorical listing of SQLite documents} set ::lHead [list] proc doc {name url desc} { } proc heading {text tag {caption {}}} { lappend ::lHead $text $tag } source [file join $::DOC pages docsdata.tcl] hd_puts "
" set i 0 set style "\"padding-right:8ex; padding-bottom: 1em\"" foreach {text tag} $::lHead { if {($i % 2)==0} { hd_puts } hd_puts "
$text" incr i } hd_puts "
" proc doc {name url desc} { hd_puts {} regsub -all { +} $name {\ } name hd_puts "$name" hd_puts {} hd_puts {} hd_resolve $desc hd_puts {} } proc heading {text tag {caption {}}} { hd_puts {} hd_puts "$text" if {$caption ne ""} { hd_puts {
} hd_puts "$caption" } } hd_puts "" source [file join $::DOC pages docsdata.tcl] hd_puts "
"