observable-framework-input-textarea
Installation
SKILL.md
Input: Textarea
Observable Framework documentation: Input: Textarea Source: https://observablehq.com/framework/input-textarea
API · Source · The textarea input allows freeform multi-line text entry. For a single line, see the text input.
In its most basic form, a textarea is a blank box whose value is the empty string. The textarea’s value changes as the user types into the box.
const text = view(Inputs.textarea());
text
We recommend providing a label and placeholder to improve usability. You can also supply an initial value if desired. The label may be either a text string or an HTML element, if more control over styling is desired.