Rich Text (WYSIWYG)
Rich Text control provides a native WordPress editor interface for formatted text content. It supports basic text formatting like bold, italic, and links.

Control Settings
The control adds no settings of its own, so the block builder shows only the rows every control has. WPML Translation is among them, which is not true of most controls.
To edit the value on the canvas instead of in the inspector, point a Rich Text component at the control from your block code. A single-line field comes from disableLineBreaks on that component.
Usage
Basic Output
<div class="content">
<?php echo wp_kses_post( $attributes['control_name'] ); ?>
</div><div class="content">
{{{control_name}}}
</div>Post Meta
<div class="content">
<?php echo wp_kses_post( get_lzb_meta( 'control_meta_name' ) ); ?>
</div>Use wp_kses_post() in PHP to safely output HTML content while preventing XSS attacks.
When using Handlebars, use triple curly brackets {{{ and }}} to output HTML content properly.