ToolJet/docs/versioned_docs/version-3.0.0-LTS/widgets/chat/markdown.md
Pratik Agrawal 5d71e0face
[docs]: AI Release (#11965)
* [docs]: Add Marketplace Plugin Anthropic

* [docs]: Add Marketplace Plugin Gemini

* Update Operations

* Update Operation

* [docs]: Add Marketplace Plugin Hugging Face

* Update Intro Pata

* Update Intro Para

* Add Model Example and Info on Inference API

* Update intro para

* Update Model Example

* Grammatical Improvements

* Grammatical Updates

* Grammar

* Update example

* [docs]: Add Marketplace Plugin Mistral AI

* Update models

* [docs]: Add Marketplace Plugin Qdrant

* Update Models in Beta

* Update Models in V3

* [docs]: Add Marketplace Plugin Cohere

* [docs]: Add Marketplace OpenAI Embedding

* Update model in beta

* Update model LTS

* [docs]:AI Whitelist info in setups

* update: ecs and cloud run

* [docs] added chromadb

* [docs] updated digital-ocean

* [docs] updated k8s

* Made changes in the docs for adding chromadb

* [dos]: ToolJet AI license update

* fix: formatting

* fix: formatting

* [docs]: Add Chat Component

* Update Example and Add Info Box

* [docs]: updated pinecone plugin

* Update SS

* [docs]: ToolJet AI

* Update available model link

* Fix typo

* Add advanced parameters table

* [docs] added AI_GATEWAY_URL

* [fix] indentation

* update: AI credits

* fix: typo

* Chat Component Properties

* update: improved doc

* CSA and Replicate to LTS

* [docs] updated kubernetes and helm for Chromadb

* [docs]: Add Marketplace Plugin Qdrant

* [docs]: Add Marketplace Plugin Qdrant

* Add Markdown

* [docs]: Add Marketplace Plugin Weviate DB

* Update qdrant beta

* Update qdrant LTS

* Update sidebars.js

* Update sidebars.js

* Update marketplace_overview beta

* Update marketplace_overview.md

* Update marketplace_overview.md

* Update Response

* formatting updates

* Parameter Definition Updates

* Update intro qdrant.md Beta

* Update intro qdrant.md LTS

* update local host

* update: added to beta

* fix: fomatting

* fix: formatting

* fix: doc

* fix: review

* update pritesh feedback

* fix: typo

* Mansukha Feedback Updates

* Remove required and optional emoji

* fix: updates

* fix: updates

* fix: review

* minor update in the markdown docs

* fix: plans

* update: added screenshots

* update: added docs to beta

* add minor changes

---------

Co-authored-by: Akshat Virmani <akshatvirmani93@gmail.com>
Co-authored-by: PriteshKiri <pritesh.d.kiri@gmail.com>
Co-authored-by: Souvik <psouvik260@gmail.com>
Co-authored-by: Adish M <adish.madhu@gmail.com>
Co-authored-by: Pritesh Kiri <77957844+PriteshKiri@users.noreply.github.com>
Co-authored-by: Vaishnavi Joshi <vj.codes29@gmail.com>
Co-authored-by: Karan Rathod <karan.altcampus@gmail.com>
2025-02-11 13:02:43 +05:30

5.7 KiB

id title
markdown Supported Markdown Syntax

In ToolJet, the Chat Component supports Markdown formatting for both responses and messages. This can be used enhance text formatting using Markdown syntax, making conversations more readable and structured.

Supported Markdown Syntax

Headings

<div style = {{ width:'200px' }}> Heading <div style = {{ width:'200px' }}> Format
H1 # Heading
H2 ## Heading
H3 ### Heading
H4 #### Heading
H5 ##### Heading
H6 ###### Heading

Text Formatting

Bold

Format:

**Text**

Result:

Text

Italic

Format:

*Text*

Result:

Text

Bold and Italic

Format:

***Text***

Result:

Text

Strikethrough

Format:

~~Text~~

Result:

Text

Lists

Unordered Lists

Format:

- Item 1
- Item 2
  - Nested Item 2.1
  - Nested Item 2.2

Result:

  • Item 1
  • Item 2
    • Nested Item 2.1
    • Nested Item 2.2
Ordered Lists

Format:

1. First Item
2. Second Item
   1. Nested Item 2.1
   2. Nested Item 2.2

Result:

  1. First Item
  2. Second Item
    1. Nested Item 2.1
    2. Nested Item 2.2
Task Lists

Format:

- [x] Completed task
- [ ] Pending task

Result:

  • Completed task
  • Pending task

Code

Inlince Code

Format:

This is `inline code`.

Result:

This is inline code.

Code Block

Format:

\```javascript
const hello = "world";
console.log(hello);
\```

Note: Please remove \ from the syntax.

Result:

const hello = "world";
console.log(hello);

Block Quotes

Format:

> Single level quote
>> Nested quote
>>> Deep nested quote

Result:

Single level quote

Nested quote

Deep nested quote

Format:

[Link Text](https://example.com)

Result:

Link Text

Image

Format:

![Image Alt Text](https://images.unsplash.com/photo-1509966756634-9c23dd6e6815?q=80&w=3176&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D)

Result:

Image Alt Text

Tables

Format:

| Header 1 | Header 2 |
|-----------|-----------|
| Cell 1    | Cell 2    |
| Cell 3    | Cell 4    |

Result:

Header 1 Header 2
Cell 1 Cell 2
Cell 3 Cell 4

Horizontal Rules

Format:

--- 
OR
___
OR
***

Result:


HTML Content

Format:

<div style="color: blue;">
  Colored text
</div>
<table>
  <tr>
    <td>HTML Table</td>
  </tr>
</table>

Result:

Colored text
HTML Table

Footnotes

Format:

Here's a sentence with a footnote[^1].

[^1]: This is the footnote.

Result:

Here's a sentence with a footnote1.


  1. This is the footnote. ↩︎