Markdown not transformed in rss feed plugins
See original GitHub issueDescription
Using any of the available rss plugins [1][2] I am not able to include Markdown content such that it is converted to html. But the respective node.content
entries on my BlogPost types are in html format when I query them in the playground.
Could it be that this is because the plugins use the hook beforeBuild
and afterBuild
when the build has already been finished / not yet started and the transformer is not yet/anymore available here?
[1] https://github.com/onecrayon/gridsome-plugin-feed [2] https://github.com/darthmeme/gridsome-plugin-rss
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:7 (2 by maintainers)
Top Results From Across the Web
RSS feed items in markdown not rendered - DEVONthink
The imported markdown files seem to be valid - using marked2 show the markdown feed items in good shape. I didn´t have changed...
Read more >Settings - MkDocs RSS Plugin - GitHub Pages
To produce a valid RSS feed, the plugin uses: some global settings from MkDocs ... Retrieved content is the raw markdown converted rougthly...
Read more >RSS feed broken | WordPress.org
Today I suddenly got a message from Apple that my RSS feed is not validating. Haven't changed anything in my settings or plugin...
Read more >How to fix? Wordpress wp-markdown plugin corrupted syntax ...
As a workaround I have (1) disabled the wp-markdown plugin. (2) Kept the syntax-highlighter-evolved activated. (3) Activated the Jetpack markdown plugin. The ...
Read more >A Comprehensive Guide to RSS Feeds | FeedWind
Auto-Generated RSS feeds / URLs. Not all web pages are alike when it comes to the availability of an RSS feed. It depends...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Is there a way to get the full HTML with all remark plugins I’ve configured in Gridsome?
I’ve been thinking about this… It might be difficult for those plugins to get transformed node fields unless they change their options. They would either generate GraphQL queries or let developers write them manually. For now, I would recommend using the
marked
package to transform the markdown like this:It won’t include all the Remark plugins etc, but you will at least have HTML instead of markdown 😃