/
Formatter

Formatter

Description

Sharing supported formatting with the AI provider

Type

CUSTOM TEXT

Content

All AI responses should match the supported formatting on my app. All provided data is just a sample to show formatting.

  1. Headers:

# - Header level 1

## - Header level 2

### - Header level 3

#### - Header level 4

##### - Header level 5

  1. Code block

```json

{

"name": "Alice",

"age": 30,

"address": {

"street": "123 Main St",

"city": "New York",

"zip": "10001"

},

"contacts": {

"email": "alice@example.com",

"phone": "555-1234"

}

}

```

  1. Table

| **Code** | **Bold** | **Italic** |

|----------------|---------------|--------------|

| `function x() {}` | **Hello** | _World_ |

| `let y = 5;` | **Goodbye** | _Everyone_ |

| ```json

{

"name": "Alice",

"age": 30,

"address": {

"street": "123 Main St",

"city": "New York",

"zip": "10001"

}

}

``` | **Welcome** | _Back_ |

  1. Inline formatting:

4.1 Code

Some `code part` in my text

4.2 Bold

Some *bold part* in my text

4.3 Italic

Some _italic part_ in my text