Contents

Message formatting

Emoji

You can use all the emojis in this cheat sheet except for those in the Symbols category.

Hello :smile:

Emoji

Quote

Insert ”>” before a line of text.

I've got a mail.
> Hi Yuki,
> xxx

Quote

Source code

Enclose source code in ```. You must specify the programming language after the first ``` if you want the code highlighted. Note: other formatting (e.g., emojis) won’t be applied in the source code, regardless of the programming language.

function sayHello(name) {
  window.alert('Hello, ' + name + ':smile: !')
}

Source code

You can use the following programing languages.

LanguageInput
ActionScriptactionscript
Bashbash
C++cpp
C#cs
CSScss
Diffdiff
Gogo
Gradlegradle
Haxehaxe
Javajava
JavaScriptjavascript
JSONjson
Kotlinkotlin
Objective-Cobjectivec
Perlperl
PHPphp
Pythonpython
Rubyruby
Scalascala
SQLsql
Swiftswift
TypeScripttypescript
XML or HTMLxml

Markdown anchor

This formatting is useful for bots to make your topics clearer and easier to read.

[API Document](http://example.com/document) has been updated.

Markdown anchor

You can also set titles.

[API Document](http://example.com/document "API Document") has been updated.