-1

Is there a utility that will automatically convert my Markdown content to HTML on-the-fly within an HTML page?

So that I could easily embed markdown content within an HTML page like so?

<BODY>
<div class="slide" id="what1">
<MARKDOWN>

# Blah blah blah.

Markdown *style* (content)[http://google.com]

</MARKDOWN>

vonbrand
  • 2,509

1 Answers1

1

If you have the ability to use SSS (Server-Side-Script), and Perl, then this is for you.

It will convert your markdown language into HTML code while on the server.


Or, instead, just convert it to HTML while on your computer, and then upload the HTML given.

To do this, download the perl programming language here (unless you know that you already can run perl scripts).

Then, download the perl markdown script here (this will convert markdown to HTML code).

Follow any installation instructions on the linked page.


Hope this helps.