read single file
This commit is contained in:
parent
805732fdc7
commit
24678d73f5
7 changed files with 226 additions and 119 deletions
|
@ -7,6 +7,8 @@ package base
|
|||
import (
|
||||
"bytes"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/gogits/gfm"
|
||||
)
|
||||
|
@ -31,6 +33,26 @@ func isLink(link []byte) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
func IsMarkdownFile(name string) bool {
|
||||
name = strings.ToLower(name)
|
||||
switch filepath.Ext(name) {
|
||||
case "md", "markdown":
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func IsReadmeFile(name string) bool {
|
||||
name = strings.ToLower(name)
|
||||
if len(name) < 6 {
|
||||
return false
|
||||
}
|
||||
if name[:6] == "readme" {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
type CustomRender struct {
|
||||
gfm.Renderer
|
||||
urlPrefix string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue