Replaces non-quotation markers from a given piece of indentation with spaces.
Callback for array_map() within drupal_html_to_text().
function _drupal_html_to_text_clean($indent) { return preg_replace('/[^>]/', ' ', $indent); }