# page-post-notes/trunk/include/functions.php

Page &amp; Post Notes, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/page-post-notes/trunk/code/include/functions.php
- Raw: https://pluginprobe.com/plugins/page-post-notes/trunk/raw/include/functions.php
- Modified: 2021-02-01T13:08:36+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/page-post-notes/trunk/code/include/functions.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<?php

// ==================================================================
// output the values into the the page or input in the correct way
// allowing to have double and single quotes inside input
// ==================================================================

function yydev_notes_html_output($output_code) {

    $output_code = stripslashes_deep($output_code);
    $output_code = esc_html($output_code);
    return $output_code;

} // function yydev_notes_html_output($output_code) {

```
