- Description:
Configure the controls to edit hyperlinks around selected text.
- Appears in:
├── _inputs │ └── * │ └── Rich Text Input │ └── options │ └── link_options └── _editables ├── content │ └── link_options ├── block │ └── link_options └── text └── link_options- Type:
Object- Properties:
This key defines an editing interface for relative, absolute, and fully qualified URLs.
Appears in:
link_options,image_options,_inputs.*.This key defines an editing interface for true or false values.
Appears in:
_inputs.*,link_options,image_options.Show examplesHide examples
In this example, we have configured the
featuredkey as a Boolean Input.Copied to clipboard_inputs: featured: type: switch label: Featured{ "_inputs": { "featured": { "type": "switch", "label": "Featured" } } }This key defines an editing interface for true or false values.
Appears in:
_inputs.*,link_options,image_options.Show examplesHide examples
In this example, we have configured the
featuredkey as a Boolean Input.Copied to clipboard_inputs: featured: type: switch label: Featured{ "_inputs": { "featured": { "type": "switch", "label": "Featured" } } }This key defines an editing interface for true or false values.
Appears in:
_inputs.*,link_options,image_options.Show examplesHide examples
In this example, we have configured the
featuredkey as a Boolean Input.Copied to clipboard_inputs: featured: type: switch label: Featured{ "_inputs": { "featured": { "type": "switch", "label": "Featured" } } }This key defines a simple editing interface for plain text.
Appears in:
_inputs.*,link_options,image_options.Show examplesHide examples
In this example, we have configured the
titlekey as a Text Input.Copied to clipboard_inputs: title: type: text label: Blog Title{ "_inputs": { "title": { "type": "text", "label": "Blog Title" } } }- Examples: