tangled
alpha
login
or
join now
anirudh.fi
/
vite
5
fork
atom
fast and minimal static site generator
ssg
5
fork
atom
overview
issues
1
pulls
pipelines
Revert fancy URL
anirudh.fi
3 years ago
71bec3e9
5c3326f9
+11
-11
5 changed files
expand all
collapse all
unified
split
atom
feed.go
commands
build.go
go.mod
main.go
markdown
markdown.go
+2
-2
atom/feed.go
···
6
6
"path/filepath"
7
7
"time"
8
8
9
9
-
"icyphox.sh/vite/config"
10
10
-
"icyphox.sh/vite/markdown"
9
9
+
"git.icyphox.sh/vite/config"
10
10
+
"git.icyphox.sh/vite/markdown"
11
11
)
12
12
13
13
type AtomLink struct {
+4
-4
commands/build.go
···
9
9
"sync"
10
10
"time"
11
11
12
12
-
"icyphox.sh/vite/atom"
13
13
-
"icyphox.sh/vite/config"
14
14
-
"icyphox.sh/vite/markdown"
15
15
-
"icyphox.sh/vite/util"
12
12
+
"git.icyphox.sh/vite/atom"
13
13
+
"git.icyphox.sh/vite/config"
14
14
+
"git.icyphox.sh/vite/markdown"
15
15
+
"git.icyphox.sh/vite/util"
16
16
)
17
17
18
18
const (
+1
-1
go.mod
···
1
1
-
module icyphox.sh/vite
1
1
+
module git.icyphox.sh/vite
2
2
3
3
go 1.15
4
4
+1
-1
main.go
···
4
4
"fmt"
5
5
"os"
6
6
7
7
-
"icyphox.sh/vite/commands"
7
7
+
"git.icyphox.sh/vite/commands"
8
8
)
9
9
10
10
func main() {
+3
-3
markdown/markdown.go
···
6
6
gotmpl "text/template"
7
7
"time"
8
8
9
9
-
"icyphox.sh/vite/config"
10
10
-
"icyphox.sh/vite/markdown/template"
9
9
+
"git.icyphox.sh/vite/config"
10
10
+
"git.icyphox.sh/vite/markdown/template"
11
11
12
12
-
bf "icyphox.sh/grayfriday"
12
12
+
bf "git.icyphox.sh/grayfriday"
13
13
)
14
14
15
15
var (