mirror of
https://github.com/friendica/friendica
synced 2025-02-02 08:24:13 +00:00
8 lines
153 B
PHP
8 lines
153 B
PHP
<?php
|
|
require_once("library/parsedown/Parsedown.php");
|
|
|
|
function Markdown($text) {
|
|
$Parsedown = new Parsedown();
|
|
return($Parsedown->text($text));
|
|
}
|
|
?>
|