# wp-coder/4.5/includes/functions.php

WP Coder – Insert &amp; Manage Code Snippets, version 4.5. 10 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/4.5/code/includes/functions.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.5/raw/includes/functions.php
- Modified: 2026-02-14T05:39:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/4.5/code/includes/functions.php#L10-L20`.

```php
<?php

use WPCoder\Tools\Parsedown;

defined( 'ABSPATH' ) || exit;


function wpcoder_mmd($content): string {
	return ( new Parsedown() )->text($content);
}
```
