> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# WYSIWYG

- URL: https://getpublii.com/dev/wysiwyg/
- Published: 2019-03-23T13:57:29.587Z
- Updated: 2025-01-18T21:08:42.594Z
- Description: The WYSIWYG field can be used when you want to allow user to use the visual editor instead of the raw text input. The syntax…
- Author: Tomasz Dziuda
- Tags: Fields, Theme Settings API

The WYSIWYG field can be used when you want to allow user to use the visual editor instead of the raw text input.

The syntax is very similiar to the textarea field, the main difference is a lack of support for the rows and cols parameters:

```json
{
    "name": "footerText",
    "label": "Footer text",
    "group": "Footer",
    "value": "",
    "type": "wysiwyg"
}
```

**Please remember** that you can define separated custom formats which will be available only under theme settings WYSIWYG editor it is described under [Theme settings API](#INTERNAL_LINK#/post/108) introduction.
