おいも貴婦人ブログ

生物系博士課程満期退学をしたAIエンジニアのブログ。

Django-WIKIのマークダウンを知ろう。

インストール出来ても使えないと話にならないので、マークダウンを知りましょう。
Django / Wiki / Markdown Syntax
上記のサイトを参照しましょう。
....................django-markdwonじゃない....。

Markdown 2.6.2 : Python Package Index
多分こっちがデフォルトだ...。

マークダウンの整理

Link

<http://someurl>
<somebbob@example.com>
[like this](http://someurl)

出力

http://someurl
somebbob@example.com
like this

Reference Links

You can also put the [link URL][1] below the current paragraph
like [this][2].
[1]: http://url
[2]: http://another.url "A funky title"

Or you can use a [shortcut][] reference, which links the text
"shortcut" to the link named "[shortcut]" on the next paragraph.
[shortcut]: http://goes/with/the/link/name/text

出力

You can also put the link URL below the current paragraph
like this.

Or you can use a shortcut reference, which links the text
"shortcut" to the link named "[shortcut]" on the next paragraph.

Artifact Links

Simple Links

とここまで来て力尽きる。
上で紹介したサイトのマークアップはほぼ使えるみたいです。

Have a nice Python Django Life!!!!