Markdown クラス

元は John Gruber 氏 によって作成されたテキストを HTML 形式に変換するものです。 FuelPHP は Michel Fortin 氏 によって PHP に移植、拡張されたものを使用します。

parse($text)

Markdown 形式を解析し HTML 形式で出力します。

静的 はい
パラメータ
パラメータ デフォルト 説明
$text 必須 解析したい Markdown 形式のテキスト
返り値 string
$string = '# About Markdown

Markdown is a text-to-HTML conversion tool for web writers.
Markdown allows you to write using an easy-to-read, easy-to-write
plain text format, then convert it to structurally valid HTML.

* It features bullet points
* As well as other handy features';

echo Markdown::parse($string);

出力結果

<h1>About Markdown</h1>
<p>Markdown is a text-to-HTML conversion tool for web writers.
Markdown allows you to write using an easy-to-read, easy-to-write
plain text format, then convert it to structurally valid HTML.</p>
<ul>
<li>It features bullet points</li>
<li>As well as other handy features</li>
</ul>