views:

243

answers:

3

Hi,

I am trying to implement WMD onto my website and was wondering how would I go about running showdown.js server side to convert markdown to HTML? (in order to store both in the DB)

I am using PHP...any tips would be helpful (never ran any sort of js from php before)

Thanks, Andrew

+2  A: 

If you're going to run a markdown converter, why run the javascript port? Isn't that a bit backwards?

Markdown was originally designed to run server-side, showdown is a port that allows the conversion to happen in javascript.

Here is where you start.

tylerl
because i wouldn't know to how to run the markdown.pl either
Andrew
and markdown has horrible documentation
Andrew
The original perl implementation is only one of many server-side implementations that exist. @stukelly pointed out a PHP port.
tylerl
A: 

WMD handles the client side implementation of your markup. It allows the user to see a rich text version of their input before they submit.

Once the user is happy, they send their input to the server using the form.

At this point you will use your PHP script to take the input and sanitise it. You will need to remove all the possible XSS exploits and any HTML tags which you do not want to store in your database.

Jon Winstanley
+2  A: 

You could use PHP Markdown, which is a port of the Markdown program written by John Gruber.

Here is a example of how to use PHP Markdown with your code.

include_once "markdown.php";
$my_html = Markdown($my_text);
stukelly