forked from jackyzha0/hugo-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.go
51 lines (43 loc) · 958 Bytes
/
parse.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
package main
import (
"bytes"
"fmt"
"github.com/PuerkitoBio/goquery"
"io/ioutil"
"strings"
)
// parse single file for links
func parse(dir, pathPrefix string) []Link {
// read file
source, err := ioutil.ReadFile(dir)
if err != nil {
panic(err)
}
// parse md
var links []Link
fmt.Printf("[Parsing note] %s => ", trim(dir, pathPrefix, ".md"))
var buf bytes.Buffer
if err := md.Convert(source, &buf); err != nil {
panic(err)
}
doc, err := goquery.NewDocumentFromReader(&buf)
var n int
doc.Find("a").Each(func(i int, s *goquery.Selection) {
text := strings.TrimSpace(s.Text())
target, ok := s.Attr("href")
if !ok {
target = "#"
}
target = processTarget(target)
source := processSource(trim(dir, pathPrefix, ".md"))
// fmt.Printf(" '%s' => %s\n", source, target)
links = append(links, Link{
Source: source,
Target: target,
Text: text,
})
n++
})
fmt.Printf("found: %d links\n", n)
return links
}