-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
115 lines (96 loc) · 2.28 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package main
import (
"bytes"
"fmt"
"html/template"
"io/ioutil"
"os"
"regexp"
"strings"
"github.com/microcosm-cc/bluemonday"
"github.com/russross/blackfriday"
yaml "gopkg.in/yaml.v2"
)
const delim = "---"
type post struct {
Title string
Published bool
Description string
Tags []string
CoverImage string
Series string
PostBody template.HTML
}
var templ = `<!DOCTYPE html>
<html lang="en">
<head>
<title>{{.Title}}</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer-when-downgrade" />
<meta name="description" content="{{.Description}}" />
</head>
<body>
<div class="post">
<h1>{{.Title}}</h1>
{{.PostBody}}
</div>
</body>
</html>
`
func loadFile(s string) (b []byte, err error) {
f, err := ioutil.ReadFile(s)
if err != nil {
return nil, err
}
return f, nil
}
func isNil(i interface{}) bool {
if i != nil {
return false
}
return true
}
func main() {
f, err := loadFile("test.md")
if err != nil {
panic(err)
}
// Not the best test
b := bytes.Split(f, []byte(delim))
if len(b) < 3 || len(b[0]) != 0 {
panic(fmt.Errorf("Front matter is damaged"))
}
m := make(map[string]interface{})
err = yaml.Unmarshal([]byte(b[1]), &m)
if err != nil {
msg := fmt.Sprintf("error: %v\ninput:\n%s", err, b[1])
panic(msg)
}
p := &post{}
if isNil(m["title"]) {
panic(err)
} else {
p.Title = m["title"].(string)
}
p.Published = m["published"].(bool)
p.Description = m["description"].(string)
// TODO: Strip space after comma prior to parse?
tmp := m["tags"].(string)
p.Tags = strings.Split(tmp, ", ")
p.CoverImage = m["cover_image"].(string)
p.Series = m["series"].(string)
pBody := f[len(b[1])+(len(delim)*2):]
out := blackfriday.Run(pBody)
bm := bluemonday.UGCPolicy()
bm.AllowAttrs("class").Matching(regexp.MustCompile("^language-[a-zA-Z0-9]+$")).OnElements("code")
p.PostBody = template.HTML(bm.SanitizeBytes(out))
// p.PostBody = template.HTML(bluemonday.UGCPolicy().SanitizeBytes(out))
t := template.Must(template.New("msg").Parse(templ))
err = t.Execute(os.Stdout, p)
if err != nil {
panic(err)
}
}