We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Mainmatter blog feed has always looked broken to me, and is the only feed that looks like this in the many RSS feeds I read:
Screenshot from Feedbin, but I see the same with the Reeder iOS app which uses the Feedbin backend.
Looks like HTML tags aren't sanitized properly?
Could be related: the feed is invalid because:
XML parsing error: :3:0: XML or text declaration not at start of entity
Indeed, https://github.com/mainmatter/mainmatter.com/blob/master/src/feed.njk#L15 shows that <!-- prettier-ignore-start --> gets rendered even though the XML declaration should be the very first line in the response. Maybe that breaks the parsers on my end?
<!-- prettier-ignore-start -->
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Mainmatter blog feed has always looked broken to me, and is the only feed that looks like this in the many RSS feeds I read:
Screenshot from Feedbin, but I see the same with the Reeder iOS app which uses the Feedbin backend.
Looks like HTML tags aren't sanitized properly?
Could be related: the feed is invalid because:
Indeed, https://github.com/mainmatter/mainmatter.com/blob/master/src/feed.njk#L15 shows that
<!-- prettier-ignore-start -->
gets rendered even though the XML declaration should be the very first line in the response. Maybe that breaks the parsers on my end?The text was updated successfully, but these errors were encountered: