Created
May 7, 2021 06:10
-
-
Save andreivasiliu/aa66f727f3f306000306a77c023c244c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From: https://wiki.tcl-lang.org/page/TemplaTcl%3A+a+Tcl+template+engine | |
source tt.tcl | |
set template { | |
<element><%= $myvar %></element> | |
} | |
# Create template engine | |
TemplaTcl::create tt | |
# Load template from string; alternative is parseFile for file | |
tt parse $template | |
tt setVar myvar "Hello world" | |
puts [tt render] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment