diff options
author | default <nobody@localhost> | 2024-07-19 07:11:25 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-07-19 07:11:25 +0200 |
commit | 6e3b621f7b84844ce18eb953fc7fba806472bef8 (patch) | |
tree | c22e65d60fd710ed2affcd255acc3e0d7e4f0b01 /doc | |
parent | f3b392e06a72cc1461ab2c9587c96991a2731e9c (diff) |
Added support for Markdown ~~strikethrough text~~.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/snac.5 | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -25,6 +25,8 @@ A special subset of Markdown is allowed, including: **text between two pairs of asterisks** .It italic *text between a pair of asterisks* +.It strikethrough text +~~text between a pair of tildes~~ .It code Text `between backticks` is formatted as code. .Bd -literal @@ -41,16 +43,16 @@ int main(int argc, char *argv[]) Standalone URLs are converted to links. Also, from version 2.54, markdown-style links in the form of [link label](url) are also supported. -.It Line separators +.It line separators Horizonal rules can be inserted by typing three minus symbols alone in a line. .It quoted text Lines starting with >. -.It User Mentions +.It user mentions Strings in the format @user@host are requested using the Webfinger protocol and converted to links and mentions if something reasonable is found. -.It Emoticons / Smileys / Silly Symbols +.It emoticons /emojis / smileys / silly symbols (Note: from version 2.51, these symbols are configurable by the instance administrator, so the available ones may differ). .Pp |