Documentation Source Text

Check-in [dcf4e23f9b]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix handling of
  • markup in hdom.tcl.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: dcf4e23f9bec3d60b03d8cf4550a63db1fb2b15c
User & Date: dan 2016-09-12 20:59:03.934
Context
2016-09-12
21:01
Fix a typo in vtab.in. (check-in: 4df3244e10 user: dan tags: trunk)
20:59
Fix handling of
  • markup in hdom.tcl.
(check-in: dcf4e23f9b user: dan tags: trunk)
20:54
Add links to the Android Bindings repository. (check-in: 7bf5343c19 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to search/hdom.tcl.
108
109
110
111
112
113
114




115
116
117
118
119
120
121
  set aContentChecker(a)        HtmlAnchorContent
  set aContentChecker(ul)       HtmlUlContent
  set aContentChecker(ol)       HtmlUlContent
  set aContentChecker(menu)     HtmlUlContent
  set aContentChecker(dir)      HtmlUlContent
  set aContentChecker(form)     HtmlFormContent
  set aContentChecker(option)   HtmlPcdataContent




  
  # Add content checkers for all self-closing tags.
  foreach x {
    area base br hr iframe img input isindex link meta 
    param script style embed nextid wbr bgsound
  } { set aContentChecker($x) HtmlEmptyContent }








>
>
>
>







108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  set aContentChecker(a)        HtmlAnchorContent
  set aContentChecker(ul)       HtmlUlContent
  set aContentChecker(ol)       HtmlUlContent
  set aContentChecker(menu)     HtmlUlContent
  set aContentChecker(dir)      HtmlUlContent
  set aContentChecker(form)     HtmlFormContent
  set aContentChecker(option)   HtmlPcdataContent
  set aContentChecker(li)       HtmlLiContent
  set aContentChecker(dt)       HtmlLiContent
  set aContentChecker(dd)       HtmlLiContent
  set aContentChecker(dl)       HtmlDlContent
  
  # Add content checkers for all self-closing tags.
  foreach x {
    area base br hr iframe img input isindex link meta 
    param script style embed nextid wbr bgsound
  } { set aContentChecker($x) HtmlEmptyContent }