freddiev4
freddiev4

Reputation: 2621

Is There a Way to Include Markdown in HTML/Websites?

I'm currently adding a section to my website and I want to put together a guide on the page for the people that will be looking at this particular section of my site. I'd like to use Markdown for formatting and presentation. Is there any way to this inside of an HTML file?

I've tried using Strapdown but it only supports certain bootstrap themes and I would like to use my own HTML around the markdown text. I haven't been able to find a StackOverflow post that explains how to do this either.

Upvotes: 5

Views: 3142

Answers (1)

torox
torox

Reputation: 490

Markdown is not a part of the HTML standard. You need something to parse the markdown "codes". There are plenty of libraries which can do this for you though.

and many many more (search is your friend).

Upvotes: 3

Related Questions