渲染readme

This commit is contained in:
2023-05-29 10:20:53 +08:00
parent 590113efbe
commit 35fd7495aa
2 changed files with 47 additions and 19 deletions

46
routers/docs.go Normal file
View File

@@ -0,0 +1,46 @@
package routers
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"github.com/russross/blackfriday"
)
func GetDocs(w http.ResponseWriter, r *http.Request) {
input, err := ioutil.ReadFile("./README.md")
if err != nil {
log.Println(err)
return
}
output := blackfriday.Markdown(input, blackfriday.HtmlRenderer(0, "", ""), blackfriday.EXTENSION_TABLES|blackfriday.EXTENSION_FENCED_CODE|blackfriday.EXTENSION_AUTOLINK)
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.Write([]byte(fmt.Sprintf(`
<!DOCTYPE html>
<html>
<head>
<title>API Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- 使 highlight 支持 go 語言的代碼解析 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/go.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<style type="text/css">
body {
max-width: 960px;
margin: 0 auto;
}
</style>
</head>
<body class="markdown-body">
%s
</body>
</html>
`, string(output))))
}