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
if CONDITION; COMMANDS_TRUE...; [else; COMMANDS_FALSE...;] end
\subsection else-description Description
Description
------------
`if` will execute the command `CONDITION`. If the condition's exit status is 0, the commands `COMMANDS_TRUE` will execute. If it is not 0 and `else` is given, `COMMANDS_FALSE` will be executed.
\subsection else-example Example
Example
------------
The following code tests whether a file `foo.txt` exists as a regular file.