add chat README
This commit is contained in:
parent
538b65c513
commit
51f024900b
24
src/chats/README.md
Normal file
24
src/chats/README.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# Chat System Documentation
|
||||||
|
|
||||||
|
For now, see chat.rs for the source code and the individual YAML files for examples.
|
||||||
|
|
||||||
|
# Known bugs
|
||||||
|
## Only Ifs
|
||||||
|
|
||||||
|
```
|
||||||
|
- some choice:
|
||||||
|
- if $a:
|
||||||
|
- answer 1
|
||||||
|
- if $b:
|
||||||
|
- answer 2
|
||||||
|
```
|
||||||
|
|
||||||
|
This is currently broken. Instead do this:
|
||||||
|
|
||||||
|
```
|
||||||
|
- some choice:
|
||||||
|
- if $a:
|
||||||
|
- answer 1
|
||||||
|
- goto: somelabel
|
||||||
|
- answer 2
|
||||||
|
```
|
Loading…
Reference in a new issue