Description
Hi, nice project. I was wondering if it would be possible to either support user-defined attributes on the <feed>
and <entry>
tags, such as xml:lang="en"
, or maybe it would be best to have a "lang" ("language"?) field somewhere (in Feed
and Entry
).
The xml:lang
attribute is mentioned in Introduction to Atom - About this document which links to 2.12 Language Identification. Static Site Generators such as Zola also make use of this attribute (but I'd like to move away from it), so it would be nice if this crate somehow offered the possibility of setting the document's language. In the future, we could also decide what to do with the hreflang
attribute.
I took a look at both the documentation and the code, but as far as I can tell, I'm only able to define namespaces
and not actually arbitrary attributes
for the <feed>
tag. Thank you.