This functionality is available for PRO version.
Name: wph/components/rewrite-default/html_replacements
Type: Filter
Arguments: $status
This filter can be used to disable the HTML Replacements on the default rewrite-default module. Keep in mind that this run if there are actual Replacements pair saved.
add_filter( 'wph/components/rewrite-default/html_replacements', 'wph_components_rewrite-_efault_html_replacements' );
function wph_components_rewrite-_efault_html_replacements( $status )
{
$status = FALSE;
return $status;
}