SQLite Forum

HTML generation issue in sqlite.org's search engine
Login
The following search query is generating oddly corrupted HTML for me as of the time of writing:

https://www.sqlite.org/search?s=d&q=regexp

It seems to be going off the rails around line 198 (as I write this) in the generated HTML, when what looks like it's meant to be part of a CSS color specification (`rgb(0, 0, 0);`) gets plunked into the page text:

```
<b>&nbsp;...&nbsp;</b>0,0,0);" />
```

Things go downhill from there; firefox ends up interpreting a fair chunk of HTML as attributes belonging to the next <path> element, and the same general pattern repeats until the end of the results list.

I apologize if this is not the right place to report bugs with the webpages, and would be happy to follow pointers to that right place.