mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 00:54:27 +02: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));
|
|
}
|
|
?>
|