function html_in_yaml($html,$indent=24){ $html = "|\n$html"; $html = str_replace("\r\n","\n",$html); $html = str_replace("\r","\n",$html); $html = str_replace("\n","\n".str_pad("",$indent," "),$html); return $html; }