]> git.mxchange.org Git - friendica.git/blob - library/markdown.php
New routines for markdown to html and html to markdown.
[friendica.git] / library / markdown.php
1 <?php
2 require_once("library/parsedown/Parsedown.php");
3
4 function Markdown($text) {
5         $Parsedown = new Parsedown();
6         return($Parsedown->text($text));
7 }
8 ?>