Fix format error

This commit is contained in:
BruceChen 2022-11-04 16:26:53 +08:00
parent a23747e236
commit b3ca0a1b33
7 changed files with 163 additions and 75 deletions

View file

@ -100,6 +100,7 @@ Chat Bot (Script) structure is the following:
```
**Script Metadata** is a section with a custom format that mixes in C# with our format using comments.
Every single Chat Bot (Script) must have this section at the beginning in order to work.
### Script Metadata Format
@ -167,6 +168,7 @@ After the end of the **Script Metadata** section, you basically can define any n
There are no required methods, everything is optional.
When the Chat Bot (Script) has been initialized for the first time the `Initialize` method will be called.
In it you can initialize variables, eg. Dictionaries, etc..
<div class="custom-container tip"><p class="custom-container-title">Tip</p>