This commit is contained in:
slene 2014-03-20 17:31:18 +08:00
parent c3532718a7
commit 21379e30a1
3 changed files with 17 additions and 5 deletions

View file

@ -36,7 +36,7 @@ func isLink(link []byte) bool {
func IsMarkdownFile(name string) bool {
name = strings.ToLower(name)
switch filepath.Ext(name) {
case "md", "markdown":
case "md", "markdown", "mdown":
return true
}
return false
@ -61,7 +61,7 @@ type CustomRender struct {
func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
if len(link) > 0 && !isLink(link) {
if link[0] == '#' {
link = append([]byte(options.urlPrefix), link...)
// link = append([]byte(options.urlPrefix), link...)
} else {
link = []byte(path.Join(options.urlPrefix, string(link)))
}