mirror of
https://github.com/jackyzha0/hugo-obsidian.git
synced 2024-06-14 11:42:35 +03:00
83 lines
1.5 KiB
Go
83 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"github.com/BurntSushi/toml"
|
|
wikilink "github.com/abhinav/goldmark-wikilink"
|
|
"github.com/yuin/goldmark"
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
)
|
|
|
|
var md goldmark.Markdown
|
|
|
|
func init() {
|
|
md = goldmark.New(
|
|
goldmark.WithExtensions(&wikilink.Extender{}),
|
|
)
|
|
}
|
|
|
|
type Link struct {
|
|
Source string
|
|
Target string
|
|
Text string
|
|
}
|
|
|
|
type LinkTable = map[string][]Link
|
|
type Index struct {
|
|
Links LinkTable
|
|
Backlinks LinkTable
|
|
}
|
|
|
|
type Content struct {
|
|
Title string
|
|
Content string
|
|
}
|
|
|
|
type ContentIndex = map[string]Content
|
|
|
|
type ConfigTOML struct {
|
|
IgnoredFiles []string `toml:"ignoreFiles"`
|
|
}
|
|
|
|
func getIgnoredFiles(base string) (res map[string]struct{}) {
|
|
res = make(map[string]struct{})
|
|
|
|
source, err := ioutil.ReadFile(base + "/config.toml")
|
|
if err != nil {
|
|
return res
|
|
}
|
|
|
|
var config ConfigTOML
|
|
if _, err := toml.Decode(string(source), &config); err != nil {
|
|
return res
|
|
}
|
|
|
|
for _, glb := range config.IgnoredFiles {
|
|
matches, _ := filepath.Glob(base + glb)
|
|
for _, match := range matches {
|
|
res[match] = struct{}{}
|
|
}
|
|
}
|
|
|
|
fmt.Printf("%v\n", res)
|
|
return res
|
|
}
|
|
|
|
func main() {
|
|
in := flag.String("input", ".", "Input Directory")
|
|
out := flag.String("output", ".", "Output Directory")
|
|
root := flag.String("root", "..", "Root Directory (for config parsing)")
|
|
index := flag.Bool("index", false, "Whether to index the content")
|
|
flag.Parse()
|
|
|
|
ignoreBlobs := getIgnoredFiles(*root)
|
|
l, i := walk(*in, ".md", *index, ignoreBlobs)
|
|
f := filter(l)
|
|
err := write(f, i, *index, *out)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|