您好,登錄后才能下訂單哦!
小編給大家分享一下php實現(xiàn)markdown轉(zhuǎn)html的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
php實現(xiàn)markdown轉(zhuǎn)html的方法:用markdown編輯api的方式,代碼為【$fileContent = file_get_contents(storage_path('doc/admin_api.md'))】。
php實現(xiàn)markdown轉(zhuǎn)html的方法:
使用插件實現(xiàn)markdown轉(zhuǎn)為html
功能很簡單,就直接上代碼啦。
<?php namespace App\Http\Controllers\Admin; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Parsedown; class ApiDocController extends Controller { public function __construct(){ $this->markdownParser = new Parsedown(); } public function showDoc(Request $request){ $fileContent = file_get_contents(storage_path('doc/admin_api.md')); $htmlContent = $this->convertMarkdownToHtml($fileContent); $content = $this->convertMarkdownToHtml($htmlContent); return view('apidoc_admin')->with('content',$content); } public function convertMarkdownToHtml($markdown) { $convertedHmtl = $this->markdownParser->setBreaksEnabled(true)->text($markdown); return $convertedHmtl; } }
本文推薦的就是用markdown編輯api的方式,md就是markdown文件的后綴,我現(xiàn)在把這個文件放在storage/doc/admin_api.md處。
為了測試,我暫時在文件里粘貼了一個markdown格式的api:
**簡要描述:** - 用戶登錄接口 **請求URL:** - ` http://xx.com/api/user/login ` **請求方式:** - POST **參數(shù):** |參數(shù)名|必選|類型|說明| |:---- |:---|:----- |----- | |username |是 |string |用戶名 | |password |是 |string | 密碼 | **返回示例** ``` { "error_code": 0, "data": { "uid": "1", "username": "zhai coder", "name": "璇哈", "groupid": 2 , "reg_time": "2019-08-01", "last_login_time": "0", } } ``` **返回參數(shù)說明** |參數(shù)名|類型|說明| |:----- |:-----|----- | |groupid |int |用戶組id,1:超級管理員;2:普通用戶 | **備注** - 更多返回錯誤代碼請看首頁的錯誤代碼描述
最后還需要準(zhǔn)備好一個view文件。
我是創(chuàng)建在resources/views文件夾下的,文件名為:apidoc_admin.blade.php。
方便表達我強烈的推薦意愿,css樣式我都給大家調(diào)好了,大家直接拿去用吧。
<!doctype html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> <style> html, body { background-color: #fff; color: #636b6f; font-family: 'Nunito', sans-serif; font-weight: 200; height: 100vh; margin: 0; color:#222; } .container{ width:800px; margin:10px auto; padding:20px; border-left:2px solid silver; border-right:2px solid silver; } table th,td{ border:1px solid #ede; padding:5px 10px; } pre{ background: #666; color: white; padding: 20px 10px; font-family: yahei; overflow: auto; } li code{ font-size: 28px; color: #4eb4ee; font-weight: bold; } </style> </head> <body> <div> {!! $content !!} </div> </body> </html>
看完了這篇文章,相信你對php實現(xiàn)markdown轉(zhuǎn)html的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。