Skip to content

Instantly share code, notes, and snippets.

@chobie
Created April 21, 2012 08:53
Show Gist options
  • Save chobie/2435868 to your computer and use it in GitHub Desktop.
Save chobie/2435868 to your computer and use it in GitHub Desktop.
<?php
class CustomRender extends Sundown\Render\HTML
{
public function normaltext($paragraph)
{
return nl2br($paragraph);
}
}
$render = new CustomRender();
$sd = new Sundown\Markdown($render);
echo $sd->render("Original:
**test a écrit:**
> look
> at
>
> this
>
>
> Exemple !");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment