Skip to content

Instantly share code, notes, and snippets.

@fritids
Forked from tabatkins/find_your_nearest.php
Created June 12, 2013 22:26
Show Gist options
  • Select an option

  • Save fritids/5769673 to your computer and use it in GitHub Desktop.

Select an option

Save fritids/5769673 to your computer and use it in GitHub Desktop.
<?php
/**
*
* ----------------------------------------------
* HTML to JSON
* ----------------------------------------------
*
* [Currently used in Wordpress to output HTML into a Google Maps InfoWindow correctly]
*
* Take output from a WYSIWYG editor and replace the carriage returns with line breaks.
* This will stop your Javascipts complaining about the whitespace.
*
* Example Usage:
* htmlToJson($post->post_content);
*
*/
function htmlToJson($html)
{
// remove carriage returns and double quotes
return str_replace(array(chr(10), chr(13), '"'), array("<br />", "", '\''), $html);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment