#!/usr/bin/env elvish

out = ./embedded_html.go

{
	echo "package web"
	print "const mainPageHTML = `"
	cat main.html | sed 's/`/`+"`"+`/g'
	echo "`"
} > $out

gofmt -w $out
