I currently have my project using markdown in a folder structure i.e., posts/my-post.md
Then rendering the content with Astro.glob() and using tailwind to style the Content component.
This works beautiful but I wanted try Contentful to write via CMS and saw that they provide markdown, but I can't get it to render correctly with how I had it with static markdown files.
So let's say with Markdown you do something like:
# Heading 1
It will render
Heading 1
instead of rendering the heading as big text, as you would see in the actual markdown.
So just wondering if this is possible since I'm using Contenful or possibly missing a section in the docs.
I'm aware Contenful provides Rich-Text but I feel like styling will possibly be an issue? I like to use code blocks and images when I blog.