io.input.richText
Requests rich text input and returns a string of HTML.
Usage
- TypeScript
- JavaScript
- Python
const body = await io.input.richText("Email body", {
helpText: "Please include user activation information.",
});
const body = await io.input.richText("Email body", {
helpText: "Please include user activation information.",
});
body = await io.input.rich_text("Email body",
help_text="Please include user activation information.",
)
interval.com
Props
- TypeScript
- JavaScript
- Python
defaultValue
Optional
string
Default value for the input.
disabled
Optional
boolean
Whether the input is disabled, preventing edits to the `defaultValue`.
helpText
Optional
string
Secondary label for providing additional context. Supports inline markdown elements like bold, italics, and links.
placeholder
Optional
string
Text to display in the input when no value is set.
Returns
string
defaultValue
Optional
string
Default value for the input.
disabled
Optional
boolean
Whether the input is disabled, preventing edits to the `defaultValue`.
helpText
Optional
string
Secondary label for providing additional context. Supports inline markdown elements like bold, italics, and links.
placeholder
Optional
string
Text to display in the input when no value is set.
Returns
string
default_value
Optional
bool
Default value for the input.
disabled
Optional
bool
Whether the input is disabled, preventing edits to the default value.
help_text
Optional
str
Secondary label for providing additional context.
placeholder
Optional
str
Text to display in the input when no value is set.
Returns
str
Was this section useful?