data:text/html,<grid><p>A</p><p>B</p><p>C</p></grid><style>grid{display: grid}</style>
afaik to create a CustomElement you need to use dashes, yes, but in this example `<grid>` is an HTMLUnknownElement, which renders just fine. some discussion here: https://stackoverflow.com/a/22545622/2393963 ?work wdt:P50 ?author ;
wdt:P577 ?publicationDate ;
wdt:P8383 ?goodreadsID .
?article schema:about ?work ;
schema:isPartOf <https://en.wikipedia.org/> ;
schema:inLanguage "en" . SELECT ?work ?workLabel ?author ?authorLabel ?publicationDate ?ageAtPublication
WHERE {
?author wdt:P569 ?birth .
?author wdt:P570 ?death .
?author wdt:P800 ?work .
?work wdt:P50 ?author ;
wdt:P31 wd:Q47461344 ;
wdt:P577 ?publicationDate .
FILTER(?publicationDate <= ?death)
BIND(YEAR(?publicationDate) - YEAR(?birth) AS ?ageAtPublication)
FILTER(?ageAtPublication > 60)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC(?ageAtPublication)
LIMIT 300