# README
fasttemplate
Simple and fast template engine for Go. Forked from fasttemplate.
This package was modified from the original one:
- usage of unsafe is removed
- usage of buffer pools is removed
Please note that fasttemplate doesn't do any escaping on template values unlike html/template do. So values must be properly escaped before passing them to fasttemplate.
# Functions
Execute substitutes template tags (placeholders) with the corresponding values from the map m and writes the result to the given writer w.
ExecuteString substitutes template tags (placeholders) with the corresponding values from the map m and returns the result.
# Type aliases
TagFunc can be used as a substitution value in the map passed to Execute*.