This commit is contained in:
Henrique Dias 2017-01-04 18:17:47 +00:00
parent edccade28f
commit b701d9f094
3 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,10 @@ func Pretty(content []byte) (*Content, string, error) {
kind := reflect.ValueOf(data).Kind() kind := reflect.ValueOf(data).Kind()
if kind.String() == "invalid" {
return &Content{}, "", nil
}
object := new(Block) object := new(Block)
object.Type = objectType object.Type = objectType
object.Name = mainName object.Name = mainName

View File

@ -17,7 +17,7 @@ func AppendRune(frontmatter []byte, language string) []byte {
case "toml": case "toml":
return []byte("+++\n" + string(frontmatter) + "\n+++") return []byte("+++\n" + string(frontmatter) + "\n+++")
case "json": case "json":
return frontmatter return []byte("{\n" + string(frontmatter) + "\n}")
} }
return frontmatter return frontmatter

View File

@ -2,6 +2,7 @@ package handlers
import ( import (
"bytes" "bytes"
"fmt"
"path/filepath" "path/filepath"
"strings" "strings"
@ -60,6 +61,8 @@ func GetEditor(i *file.Info) (*Editor, error) {
break break
} }
fmt.Println("Hey")
fallthrough fallthrough
case "markdown", "asciidoc", "rst": case "markdown", "asciidoc", "rst":
if frontmatter.HasRune(i.Content) { if frontmatter.HasRune(i.Content) {