diff options
author | dequis <dx@dxzone.com.ar> | 2016-07-25 02:23:38 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2016-07-25 03:49:08 -0300 |
commit | 06a7ed664f6f2a70a66e88417888b0233cdc52a3 (patch) | |
tree | aba93a86e99249159095c8350a60c29da0a696a8 /documentation/settings/index.markdown | |
parent | 706994f6261cd1dc369933b086ce4175de193475 (diff) | |
download | irssi.github.io-06a7ed664f6f2a70a66e88417888b0233cdc52a3.zip |
settings: add emphasis_italics, put backticks around *bold* examples
Diffstat (limited to 'documentation/settings/index.markdown')
-rw-r--r-- | documentation/settings/index.markdown | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/documentation/settings/index.markdown b/documentation/settings/index.markdown index eeda940..568843b 100644 --- a/documentation/settings/index.markdown +++ b/documentation/settings/index.markdown @@ -477,17 +477,26 @@ See the [appendix F](#a_f) for credits and license information of this document. {:#emphasis} ` emphasis = ON ` -> Enable or disable real underlining and bolding when someone says *bold* or _underlined_. +> Enable or disable real underlining and bolding when someone says `*bold*` or `_underlined_`. + +{:#emphasis_italics} +` emphasis_italics = FALSE ` + +> Enable or disable applying real italics when someone says `/italics/`. +> +> Note: not all terminals support this. Most notably, if the TERM environment variable is set to screen, it won't work. +> +> Added in irssi 0.8.17 {:#emphasis_multiword} ` emphasis_multiword = OFF ` -> Turn on to allow *more than one word bold* and _multiple underlined words_. Used in conjunction with the emphasis setting. +> Turn on to allow `*more than one word bold*` and `_multiple underlined words_`. Used in conjunction with the emphasis setting. {:#emphasis_replace} ` emphasis_replace = OFF ` -> If emphasis is turned on, the * or _ characters indicating emphasis will be removed when the word is made bold or underlined. Some people find this looks cleaner. +> If emphasis is turned on, the `*` or `_` characters indicating emphasis will be removed when the word is made bold or underlined. Some people find this looks cleaner. > > See the emphasis setting for more information. |