Style | Example | Result |
---|---|---|
Bold text | This is an *unofficial blog* of Skype | This is an unofficial blog of Skype |
Italic text | Purely _my personal_ opinion | Purely my personal opinion |
Strikeout text | See you ~tomorrow~ after tomorrow | See you |
Monospaced | Try this: ```SELECT COUNT(id)``` | Try this: SELECT COUNT(id) |
That's all about supported effects of formatting — as you can see, there's nothing complicated here. Of course, functions of changing the color and size of text are missing, but I hope that in the future they will be available (although, colored text exactly won’t be available until the developers decide how to prevent from sending "HTML-images").
Anyway, formatting Skype messages is a a handy feature, but there exists the other side of the coin, and problems can often arise, especially when we want to send such expressions:
Message | Result |
---|---|
1 * 2 * 3 = 6 |
1 2 3 = 6 |
~/foo/ and ~/bar/ |
|
__sleep() or __wakeup() |
sleep() or wakeup() |
pow(a) * pow(b) * pow(c) |
pow(a) pow(b) pow(c) |
To solve this problem, and/or disable the text formatting in the chat, at this moment we have a few options:
-
If you want to disable the formatting forever, you need to execute the following command:
/wikimarkup off
-
To disable text formatting only for current messages, at the beginning of message you should to put two symbols @ and a space. Example:
@@ _1 * 2 * 3 = 6_
— Bold text is disabled
-
Instead of @@ you can also use !! which disable not only text formatting, but also emoticons conversion. Example:
!! pow(a) * pow(b) * pow(c)
— Bold text and emoticons are disabled
-
Include the text between the
{code}
tag or```
and it won’t be formatted. Example:
{code}~/foo/ or ~/bar/{code}
— Strikeout text is disabled
-
Before the symbol of the markup, we should not add a space. Example:
1*2*3 = 6
— Text do not become bolded
-
In the new versions of Skype formatting can be disabled in the settings at Skype → Tools → Options → IM & SMS → IM appearance → Show advanced text formatting
-
Another command that disables formatting forever:
/setupkey *Lib/Conversation/EnableWiki 0
No comments