This document explains the changes and additions to the Markdown syntax implemented by Markdown Extra.
BlueFeatherでは、従来のMarkdown記法に加え、PHP Markdown Extraなどから多くの拡張を取り込んでいます。
PHP Markdown Extra
定義リスト(dl)
脚注
ID付き見出し
仕切り付きコードブロック
表組み
PHP Markdown Extra との違い
独自拡張
目次
強制ブロック区切り
でんでんマークダウンの記法は Markdown の方言のひとつ PHP Markdown Extra をさらに拡張して、日本語と電子出版に最適化させたものです。従って、オリジナルの Markdown の記法、PHP Markdown Extraに由来する記法、でんでんマークダウン独自の記法が混在しています。
WordPress.com uses Markdown Extra, which adds some features not originally available in Markdown.
There are two important changes made to how Markdown Extra works on WordPress.com, affecting code blocks:
Code blocks can use three or more back ticks (```), as well as tildes (~~~).
Syntax highlighting can be added to code blocks by specifying the code language in the first line of back ticks:
```css
.ninja {
visibility: hidden;
}
```
The list of supported languages can be found in the Posting Source Code support page.