# gutenberg/15.1.1/lib/experimental/html/wp-html.php

Gutenberg, version 15.1.1. 24 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/15.1.1/code/lib/experimental/html/wp-html.php
- Raw: https://pluginprobe.com/plugins/gutenberg/15.1.1/raw/lib/experimental/html/wp-html.php
- Modified: 2023-02-08T16:57:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/15.1.1/code/lib/experimental/html/wp-html.php#L10-L20`.

```php
<?php
/**
 * Load all files for the HTML Tag Processor.
 *
 * @package gutenberg
 */

// All class files necessary for the HTML Tag Processor.
if ( ! class_exists( 'WP_HTML_Attribute_Token' ) ) {
	require_once __DIR__ . '/class-wp-html-attribute-token.php';
}

if ( ! class_exists( 'WP_HTML_Span' ) ) {
	require_once __DIR__ . '/class-wp-html-span.php';
}

if ( ! class_exists( 'WP_HTML_Text_Replacement' ) ) {
	require_once __DIR__ . '/class-wp-html-text-replacement.php';
}

if ( ! class_exists( 'WP_HTML_Tag_Processor' ) ) {
	require_once __DIR__ . '/class-wp-html-tag-processor.php';
}

```
