<?php
class Parsedown {
public function text($text) {
return '<p>' . nl2br(htmlspecialchars($text)) . '</p>';
}