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