Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the json1 documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
57b4eafa71bf8d29b8f1fb101a2da205 |
User & Date: | drh 2015-09-09 02:06:36.123 |
Context
2015-09-09
| ||
15:39 | Enhance wrap.tcl to recognize <yyterm> elements in the input HTML and convert them into real HTML that renders an terminal-symbol oval around the enclosed text. Use this markup when talking about terminal symbols in the language specification. (check-in: 8e1d4f3bb5 user: drh tags: trunk) | |
02:06 | Fix a typo in the json1 documentation. (check-in: 57b4eafa71 user: drh tags: trunk) | |
02:04 | First draft of json1 documentation. (check-in: ea6f64590b user: drh tags: trunk) | |
Changes
Changes to pages/json1.in.
︙ | ︙ | |||
17 18 19 20 21 22 23 | global tabcnt incr tabcnt hd_puts "<tr><td width=30 valign='top'>$tabcnt.</td>" hd_puts "<td valign='top' width='30%'>\n" set fx [string trim $fx] set hlink "<a href='#$lnk'>" regsub -all {(json_[a-z_]+)} $fx "$hlink\\1</a>" fx | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | global tabcnt incr tabcnt hd_puts "<tr><td width=30 valign='top'>$tabcnt.</td>" hd_puts "<td valign='top' width='30%'>\n" set fx [string trim $fx] set hlink "<a href='#$lnk'>" regsub -all {(json_[a-z_]+)} $fx "$hlink\\1</a>" fx regsub -all {(value[1-9]?|path|label[1-9]?)} $fx "<i>\\1</i>" fx regsub -all {\((json)} $fx "(<i>\\1</i>" fx hd_puts $fx\n hd_puts "</td><td valign='top'>\n" hd_puts [string trim $desc]\n hd_puts "</td></tr>\n\n" } |
︙ | ︙ |