1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Generate anchors in opcode table html for use by new vdbe tutorial. (CVS 994)

FossilOrigin-Name: 3ae36cf158e1878a66ce9302eae4e62f8a88333f
This commit is contained in:
jplyon
2003-06-02 06:29:31 +00:00
parent 02be20d4f5
commit 5959abd5d0
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the sqlite.html file.
#
set rcsid {$Id: opcode.tcl,v 1.10 2002/08/11 20:10:49 drh Exp $}
set rcsid {$Id: opcode.tcl,v 1.11 2003/06/02 06:29:31 jplyon Exp $}
puts {<html>
<head>
@ -237,7 +237,7 @@ puts {
<tr><th>Opcode&nbsp;Name</th><th>Description</th></tr>}
foreach op [lsort -dictionary $OpcodeList] {
puts {<tr><td valign="top" align="center">}
puts "$op"
puts "<a name=\"$op\">$op</a>"
puts "<td>[string trim $Opcode($op:text)]</td></tr>"
}
puts {</table></p>}