diff options
| author | a73x <[email protected]> | 2024-08-25 15:14:42 +0100 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-08-25 15:14:42 +0100 |
| commit | 1b496432df1dc28b25eaeadec5fa537aaf014f98 (patch) | |
| tree | 5d74e20a338c6487302693bc837afc27904ee3ab /go.mod | |
| parent | fea0ef77c8c98dfadd2f9d29804653293fd31c99 (diff) | |
feat(post): templating
add templating for posts and first post
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -2,6 +2,14 @@ module git.sr.ht/~a73x/home go 1.22.5 -require go.uber.org/zap v1.27.0 +require ( + github.com/yuin/goldmark v1.7.4 + go.abhg.dev/goldmark/frontmatter v0.2.0 + go.uber.org/zap v1.27.0 +) -require go.uber.org/multierr v1.10.0 // indirect +require ( + github.com/BurntSushi/toml v1.2.1 // indirect + go.uber.org/multierr v1.10.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) |
