7 lines
130 B
PHP
7 lines
130 B
PHP
|
|
<?php
|
||
|
|
class Parsedown {
|
||
|
|
public function text($text) {
|
||
|
|
return '<p>' . nl2br(htmlspecialchars($text)) . '</p>';
|
||
|
|
}
|
||
|
|
}
|