TextArea

Use to display text from a text file. Markdown is supported as well as templating: {{flow.xxxx}} etc. Currently translation is not supported

Example markdown:

# A Big Heading

Here’s some **bold text** to highlight something important and *italic text* to emphasize something else.  
We can also *combine* **multiple styles** if we want to be extra clear.

## A Smaller Heading

1. **Item One**: A significant point.
2. *Item Two*: A slightly less important point.
3. ~~Item Three~~: An invalid point.

### An Even Smaller Heading

Here’s a code block to show an example of code:

```javascript
function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet('World');

Last updated