wp-md-rest-import/lib/Parsedown.php

7 lines
130 B
PHP
Raw Normal View History

2025-03-22 06:42:17 +01:00
<?php
class Parsedown {
public function text($text) {
return '<p>' . nl2br(htmlspecialchars($text)) . '</p>';
}
}