php-markdown是一個可以解析Markdown語法的專案
官網範例及作者github上有許多sample code,下載下來的專案資料夾中也有解析README.md的範例程式
基本使用方法
// 使用 \Michelf\Markdown 的namespace use \Michelf\Markdown; $text = file_get_contents('Readme.md'); $html = Markdown::defaultTransform($text);
php-markdown是一個可以解析Markdown語法的專案
官網範例及作者github上有許多sample code,下載下來的專案資料夾中也有解析README.md的範例程式
基本使用方法
// 使用 \Michelf\Markdown 的namespace use \Michelf\Markdown; $text = file_get_contents('Readme.md'); $html = Markdown::defaultTransform($text);