fork of anirudh.fi/vite that uses chroma for hl
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix id generation (strip URI)

+2 -1
+2 -1
atom/feed.go
··· 64 64 entry := AtomEntry{ 65 65 Title: p.Meta["title"], 66 66 Updated: rfc3339, 67 + // tag:icyphox.sh,2019-10-23:blog/some-post/ 67 68 ID: fmt.Sprintf( 68 69 "tag:%s,%s:%s", 69 - config.URL, 70 + config.URL[8:], // strip https:// 70 71 dateStr, 71 72 filepath.Join(srcDir, p.Meta["slug"]), 72 73 ),