posit-dev / py-htmltools

Tools for HTML generation and output
MIT License
19 stars 2 forks source link

Fix htmldep json serialization with head content #63

Closed jcheng5 closed 10 months ago

jcheng5 commented 10 months ago

Before this commit, json.dumps() was being called with Tag objects from head_content. That would throw because Tags aren't json-serializable.

jcheng5 commented 10 months ago

Test is failing on Python 3.12 because of https://bugs.launchpad.net/brz/+bug/2026813, which seems to be depended on by snapshottest?

Update: Should be fixed now.