diff options
author | Shane Synan <digitalcircuit36939@gmail.com> | 2016-08-08 15:13:22 -0400 |
---|---|---|
committer | Shane Synan <digitalcircuit36939@gmail.com> | 2016-08-08 15:13:22 -0400 |
commit | 88cde4e8a6278c44048c4f454471d3aac724f9b7 (patch) | |
tree | 37adc0916828b57ee5b7501e3d6e4c07e4597199 | |
parent | be23a6470cf13bc316c1cf530dc11c109bed1a9a (diff) |
help: Fix missing spaces due to genhelp parsing
Add manual spaces to fix genhelp.py leaving out the space after
<emphasis> tags when immediately followed by a new-line.
Real fix may lie somewhere in the depths of the NORMALIZE_RE reg-ex.
-rw-r--r-- | doc/user-guide/commands.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index 435115fe..2f167948 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -1508,14 +1508,14 @@ Comma-separated list of statuses of users you want in the channel, and any modes they should have. The following statuses are currently recognised: <emphasis>online</emphasis> (i.e. available, not - away), <emphasis>special</emphasis> (specific to the protocol), + away), <emphasis>special</emphasis> (specific to the protocol), <emphasis>away</emphasis>, and <emphasis>offline</emphasis>. </para> <para> If a status is followed by a valid channel mode character (@, % or +), it will be given to users with that status. - For example, <emphasis>online@,special%,away+,offline</emphasis> + For example, <emphasis>online@,special%,away+,offline</emphasis> will show all users in the channel. Online people will have +o, people who are online but away will have +v, and others will have no special modes. |