Skip to content

Instantly share code, notes, and snippets.

@Beyarz
Created June 9, 2020 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Beyarz/0341bd510d99f8e90446c58692944908 to your computer and use it in GitHub Desktop.
Save Beyarz/0341bd510d99f8e90446c58692944908 to your computer and use it in GitHub Desktop.
Convert Diet template to Html
import diet.html;
import std.stdio;
import vibe.http.server;
void translateDiet() {
auto file = File("public/index.html", "w");
auto dst = file.lockingTextWriter;
dst.compileHTMLDietFile!("index.dt", DefaultDietFilters);
writeln("Generated index.html.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment