48 lines
1.4 KiB
Go
48 lines
1.4 KiB
Go
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;
|
|
padding: 6rem 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="markdown-body">
|
|
%s
|
|
</body>
|
|
</html>
|
|
`, string(output))))
|
|
}
|