Convert \\subsection sections into rst format

This commit is contained in:
ridiculousfish
2018-12-18 18:44:30 -08:00
parent 256c2dadee
commit c33d1a217c
85 changed files with 408 additions and 204 deletions

View File

@@ -7,12 +7,14 @@ Synopsis
emit EVENT_NAME [ARGUMENTS...]
\subsection emit-description Description
Description
------------
`emit` emits, or fires, an event. Events are delivered to, or caught by, special functions called event handlers. The arguments are passed to the event handlers as function arguments.
\subsection emit-example Example
Example
------------
The following code first defines an event handler for the generic event named 'test_event', and then emits an event of that type.
@@ -25,6 +27,7 @@ emit test_event something
\endfish
\subsection emit-notes Notes
Notes
------------
Note that events are only sent to the current fish process as there is no way to send events from one fish process to another.