-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support atom_author #9
Comments
https://validator.w3.org/feed/docs/atom.html#person:
So I'll add code to spot |
Released in 0.5. Documentation here: https://github.com/simonw/datasette-atom/blob/1e2578efd55849261938a55e794e78c15cccd8cd/README.md#usage |
https://til.simonwillison.net/til/feed.atom?_feed_title=Simon%20Willison%20TIL demonstrates this in action: Defined using this SQL query: https://til.simonwillison.net/til/feed SELECT
'tag:til.simonwillison.net,2020-04-30:' || path as atom_id,
title as atom_title,
url as atom_link,
created_utc as atom_updated,
render_markdown(body) as atom_content_html,
'Simon Willison' as atom_author_name,
'https://simonwillison.net/' as atom_author_uri
FROM
til
order by
created_utc desc
limit
15 |
https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Ftil.simonwillison.net%2Ftil%2Ffeed.atom%3F_feed_title%3DSimon%2520Willison%2520TIL complains about missing author elements.
The text was updated successfully, but these errors were encountered: