all repos — vite @ 0a2b893a2ec830c9de1a0e25555e9068820eef65

a fast (this time, actually) and minimal static site generator

Use html/template in favor of text/template
Anirudh Oppiliappan x@icyphox.sh
Thu, 21 Jan 2021 18:38:14 +0530
commit

0a2b893a2ec830c9de1a0e25555e9068820eef65

parent

8aa214da3df13539a3a49b93f86ed5b046550c80

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M build.gobuild.go

@@ -2,13 +2,13 @@ package main

import ( "fmt" + "html/template" "io/ioutil" "os" "os/exec" "path/filepath" "sort" "strings" - "text/template" "github.com/cross-cpm/go-shutil" )