writes:
> On Sat, Feb 01, 2025 at 09:10:04PM +0100, Tomas Volf wrote:
>>
>> Hello,
>>
>> I think I found a bug in the htmlprag module in guile-lib. When parsing
>> attributes, the values are not properly decoded:
>>
>> --8<---------------cut here---------------start------------->8---
>> scheme@(guile-user)> ,use (htmlprag)
>> scheme@(guile-user)> (html->sxml "
")
>> $1 = (*TOP* (hr (@ (aaa "bbb"ccc'ddd"))))
>> scheme@(guile-user)> (html->sxml "")
>> $2 = (*TOP* (a (@ (href "a&b"))))
>> --8<---------------cut here---------------end--------------->8---
>>
>> I think that $1 should be "bbb\"ccc'ddd" and $2 should be "a&b".
>
> Ouch. Have you contacted Oleg Kiselyov about it? He's usually pretty
> responsive and very friendly.
I did not. I did not find a "how to report bugs" section on guile-lib's
website, and on the (htmlprag) documentation section Oleg Kiselyov is
mentioned only in one sentence as a "Thanks".
I think I have managed to find his email in one Haskell paper of his, so
I will CC him on the bug report, as suggested.
Thanks,
Tomas
--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.