diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/snac.1 | 5 | ||||
| -rw-r--r-- | doc/snac.5 | 2 | ||||
| -rw-r--r-- | doc/style.css | 1 |
3 files changed, 7 insertions, 1 deletions
| @@ -234,6 +234,8 @@ Purges old data from the timeline of all users. | |||
| 234 | .It Cm adduser Ar basedir Op uid | 234 | .It Cm adduser Ar basedir Op uid |
| 235 | Adds a new user to the server. This is an interactive command; | 235 | Adds a new user to the server. This is an interactive command; |
| 236 | necessary information will be prompted for. | 236 | necessary information will be prompted for. |
| 237 | .It Cm deluser Ar basedir Ar uid | ||
| 238 | Deletes a user, unfollowing all accounts first. | ||
| 237 | .It Cm resetpwd Ar basedir Ar uid | 239 | .It Cm resetpwd Ar basedir Ar uid |
| 238 | Resets a user's password to a new, random one. | 240 | Resets a user's password to a new, random one. |
| 239 | .It Cm queue Ar basedir Ar uid | 241 | .It Cm queue Ar basedir Ar uid |
| @@ -257,6 +259,9 @@ The rest of command line arguments are treated as media files to be | |||
| 257 | attached to the post. | 259 | attached to the post. |
| 258 | .It Cm note_unlisted Ar basedir Ar uid Ar text Op file file ... | 260 | .It Cm note_unlisted Ar basedir Ar uid Ar text Op file file ... |
| 259 | Like the previous one, but creates an "unlisted" (or "quiet public") post. | 261 | Like the previous one, but creates an "unlisted" (or "quiet public") post. |
| 262 | .It Cm note_mention Ar basedir Ar uid Ar text Op file file ... | ||
| 263 | Like the previous one, but creates a post only for accounts mentioned | ||
| 264 | in the post body. | ||
| 260 | .It Cm block Ar basedir Ar instance_url | 265 | .It Cm block Ar basedir Ar instance_url |
| 261 | Blocks a full instance, given its URL or domain name. All subsequent | 266 | Blocks a full instance, given its URL or domain name. All subsequent |
| 262 | incoming activities with identifiers from that instance will be immediately | 267 | incoming activities with identifiers from that instance will be immediately |
| @@ -78,7 +78,7 @@ converted to related emojis: | |||
| 78 | .Ss Accepted HTML | 78 | .Ss Accepted HTML |
| 79 | All HTML tags in entries are neutered except the following ones: | 79 | All HTML tags in entries are neutered except the following ones: |
| 80 | .Bd -literal | 80 | .Bd -literal |
| 81 | a p br blockquote ul ol li cite small | 81 | a p br blockquote ul ol li cite small h2 h3 |
| 82 | span i b u s pre code em strong hr img del | 82 | span i b u s pre code em strong hr img del |
| 83 | .Ed | 83 | .Ed |
| 84 | .Pp | 84 | .Pp |
diff --git a/doc/style.css b/doc/style.css index 13cef97..87c5598 100644 --- a/doc/style.css +++ b/doc/style.css | |||
| @@ -29,6 +29,7 @@ pre { overflow-x: scroll; } | |||
| 29 | .snac-list-of-lists { padding-left: 0; } | 29 | .snac-list-of-lists { padding-left: 0; } |
| 30 | .snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px; | 30 | .snac-list-of-lists li { display: inline; border: 1px solid #a0a0a0; border-radius: 25px; |
| 31 | margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; } | 31 | margin-right: 0.5em; padding-left: 0.5em; padding-right: 0.5em; } |
| 32 | .snac-no-more-unseen-posts { border-top: 1px solid #a0a0a0; border-bottom: 1px solid #a0a0a0; padding: 0.5em 0; margin: 1em 0; } | ||
| 32 | @media (prefers-color-scheme: dark) { | 33 | @media (prefers-color-scheme: dark) { |
| 33 | body, input, textarea { background-color: #000; color: #fff; } | 34 | body, input, textarea { background-color: #000; color: #fff; } |
| 34 | a { color: #7799dd } | 35 | a { color: #7799dd } |