18
Anyone have suggestions for a good Rust template engine?
(programming.dev)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Perhaps "recompilation" wasn't the right word to use there.
My goal is to let people customize the templates that will end up building the pages, either from the app itself or through a companion panel app of sorts. This excludes anything that compiles down to native code, so it must be something interpreted at runtime.
Maybe just store the template in a file, read it, and format with the
strfmt
library?