1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

New note: polygot xhtml5

This commit is contained in:
Rohan Kumar 2023-07-22 20:41:11 -07:00
parent 6fc55df736
commit 58b61eef2a
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -0,0 +1,18 @@
---
title: "Polygot XHTML5"
date: 2023-07-22T20:39:24-07:00
syndicatedCopies:
- title: 'The Fediverse'
url: 'https://pleroma.envs.net/notice/AXyQMNhrMjeGLBrmim'
---
Why is my site's markup polygot XHTML5? I have had to deal with some really awful user-agents:
- Bespoke markup parsers in RSS readers.
- Link previews in obscure messaging apps.
- A reader-mode bookmarklet-turned-browser-extension that hasn't been updated in twelve years.
- Various search engines trying to parse the page without using a compliant parser.
Most of my issues were solved by running my generated markup through both `xmllint` (XML syntax) and the Nu HTML Checker (HTML5). Optional elements tend to cause issues the most.
Overly-aggressive validation tends to spot latent bugs. Even if something is valid without an optional closing tag, I may have meant to include one in my templates. If that becomes an issue when I change something else later, it'll be hard to track down the bug when it passes more lax validation.