Show the discounted price excluding tax in price html

Display the discounted price excluding tax in the price HTML.

// To show the discounted price excluding tax in price html
add_filter('advanced_woo_discount_rules_strikeout_price_html', function($html, $original_price, $discounted_price, $is_variable_product, $initial_price_html, $separator, $original_price_raw, $discounted_price_raw) {
    if (!$is_variable_product && is_numeric($discounted_price_raw)) {
        global $product;
        if (is_object($product) && function_exists('wp_get_current_user')) {
            $user = wp_get_current_user();
            if ( !in_array( 'customer', (array) $user->roles ) && is_user_logged_in() ) {
                $html = wc_price( wc_get_price_excluding_tax( $product, [ 'price' => $discounted_price_raw ] ) );
            }
        }
    }
    return $html;
}, 100, 8);