Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save white5168/32d9452e9db61dac357e1eba1a58d450 to your computer and use it in GitHub Desktop.
Save white5168/32d9452e9db61dac357e1eba1a58d450 to your computer and use it in GitHub Desktop.
function doGet() {
return HtmlService.createTemplateFromFile("index.html")
.evaluate()
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
function include(filename) {
return HtmlService.createHtmlOutputFromFile(filename)
.setSandboxMode(HtmlService.SandboxMode.IFRAME)
.getContent();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment