pub fn handle_feed_element(
tag: &[u8],
attrs: &[(Vec<u8>, String)],
text: &str,
feed: &mut FeedMeta,
limits: &ParserLimits,
) -> boolExpand description
Handle Creative Commons element at feed level
Converts CC license information to a link with rel="license"
and adds it to the feed’s links collection.
§Arguments
tag- Element local name (e.g., “license”)attrs- Element attributes as (name, value) pairstext- Element text contentfeed- Feed metadata to updatelimits- Parser limits for bounded collections
§Returns
true if element was recognized and handled, false otherwise