|
2 | 2 | Contributors: rosdeveloper |
3 | 3 | Tags: HTML builder, HTML UI, HTML user interface, SSR, Server Side Rendering |
4 | 4 | Requires at least: 6.0 |
5 | | -Tested up to: 6.5 |
6 | | -Requires PHP: 7.4 |
| 5 | +Tested up to: 6.8 |
| 6 | +Requires PHP: 8.1 |
7 | 7 | Stable tag: 1.0.0 |
8 | 8 | License: GPLv2 or later |
9 | 9 | License URI: https://www.gnu.org/licenses/gpl-2.0.html |
10 | 10 |
|
11 | | -WordPress plugin that provides a service class to generate html user interface and form. |
| 11 | +WordPress plugin that provides a service class to generate safe and controlled HTML user interfaces and forms. |
12 | 12 |
|
13 | 13 | == Description == |
14 | 14 |
|
15 | | -Use the html builder to create page templates in your theme or implement admin pages in your plugins. |
| 15 | +Comblock HTML is a plugin that allows you to build HTML page templates for your theme or create admin pages within your plugins using a simple and safe HTML builder. |
16 | 16 |
|
17 | | -Internally it uses the DOMDocument class to generate the HTML code, improving the validation of the tags to be generated |
| 17 | +The plugin internally uses the PHP DOMDocument class to generate and validate the HTML code during compilation, ensuring safer and cleaner markup. |
| 18 | + |
| 19 | +Key features include: |
| 20 | +- Safe handling and escaping of HTML content |
| 21 | +- Helper functions for fast creation of common HTML tags |
| 22 | +- Support for HTML attributes with fluent syntax |
| 23 | +- Minified output for optimal performance |
18 | 24 |
|
19 | 25 | == Installation == |
20 | 26 |
|
21 | | -This section describes how to install the plugin and get it working. |
| 27 | +1. Upload the `comblock-html` folder to the `/wp-content/plugins/` directory. |
| 28 | +2. Activate the plugin through the 'Plugins' menu in WordPress. |
| 29 | + |
| 30 | +== Frequently Asked Questions == |
22 | 31 |
|
23 | | -e.g. |
| 32 | += How do I use the plugin? = |
24 | 33 |
|
25 | | -1. Upload `comblock-html` folder to the `/wp-content/plugins/` directory |
26 | | -1. Activate the plugin through the 'Plugins' menu in WordPress |
| 34 | +You can use the HTML builder to add tags, nest elements, and set attributes in a programmatic way. |
| 35 | +For detailed usage examples and the full guide, visit the project on GitHub: |
27 | 36 |
|
28 | | -== Frequently Asked Questions == |
| 37 | +https://github.com/rosario-fiorella/wordpress-comblock-html/ |
29 | 38 |
|
30 | | -= How to use? = |
| 39 | += What PHP and WordPress versions are supported? = |
31 | 40 |
|
32 | | -See my guide on github https://github.com/rosario-fiorella/wordpress-comblock-html/ |
| 41 | +Requires PHP 7.4 or higher and WordPress 6.0 or higher. Tested up to WordPress 6.5. |
33 | 42 |
|
34 | 43 | == Changelog == |
35 | 44 |
|
36 | 45 | = 1.0.0 = |
37 | | -First stable release |
| 46 | +* First stable release with core HTML builder functionality using DOMDocument |
| 47 | +* Support for nested tags and attribute helpers |
| 48 | +* Minified and safe HTML output |
0 commit comments