How to apply color in Markdown?

TL;DR Markdown doesn’t support color but you can inline HTML inside Markdown, e.g.: Longer answer As the original/official syntax rules state (emphasis added): Markdown’s syntax is intended for one purpose: to be used as a format for writing for the web. Markdown is not a replacement for HTML, or even close to it. Its syntax is very … Read more

How to center text with Markdown?

Markdown does not support this feature natively, but you can achieve this wrapping Markdown into HTML. As a rule of thumb, most ‘flavors’ of Markdown will render this as centered text: Specifically for Grav, as their documentation states, you should do these following steps: in your system configuration file user/config/system.yaml make sure to activate the markdown extra option: in your … Read more

What is the difference between allFile and allMarkdownRemark in gatsby

It always depends on your filesystem and how it is set up. The short answer is that allFile retrieves all kind of files (images, markdowns, JSONs, etc) set in your gatsby-source-filesystem while allMarkdownRemark only fetches the markdown files because a transformer plugin has previously created a specific node to do so. allMarkdownRemark, of course, is more specific and has better performance, … Read more

Comments in Markdown

I believe that all the previously proposed solutions (apart from those that require specific implementations) result in the comments being included in the output HTML, even if they are not displayed. If you want a comment that is strictly for yourself (readers of the converted document should not be able to see it, even with … Read more

Comments in Markdown

I believe that all the previously proposed solutions (apart from those that require specific implementations) result in the comments being included in the output HTML, even if they are not displayed. If you want a comment that is strictly for yourself (readers of the converted document should not be able to see it, even with … Read more