3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

QuickStart: minor improvements

This commit is contained in:
Pragmatic Software 2020-01-02 21:30:02 -08:00
parent f180ac8850
commit 47f0876c9f

View File

@ -268,7 +268,7 @@ Plugins and Factoids.
Factoids are a very special type of command. Anybody interacting with PBot
can create, edit, delete and invoke factoids. Factoids can be locked by the
creator of the factoid to prevent others from editing their factoids.
creator of the factoid to prevent them from being edited by others.
At its most simple, factoids merely output the text the creator sets.
@ -280,6 +280,8 @@ At its most simple, factoids merely output the text the creator sets.
Significantly more complex factoids can be built by using `$variables`, command-substitution,
command-piping, `/code` invocation, and more!
For more information, see the [Factoids documentation](https://github.com/pragma-/pbot/blob/master/doc/Factoids.md).
### Modules
Modules are external command-line executable programs and scripts that can be
@ -307,3 +309,4 @@ Now you have a `qalc` calculator in PBot!
<pragma-> !qalc 2 * 2
<PBot> 2 * 2 = 4
For more information, see the [Modules documentation](https://github.com/pragma-/pbot/blob/master/doc/Modules.md).