In my application. all my template subsitutions are strings. I want to improve the templating engine more, such that it won't assert the interface or somehow, and directly stream the string as is.
since all my database read values are in strings. I want to use map[string]string insead if it would increase the subsitution effieciency more.
In my application. all my template subsitutions are strings. I want to improve the templating engine more, such that it won't assert the interface or somehow, and directly stream the string as is.
since all my database read values are in strings. I want to use map[string]string insead if it would increase the subsitution effieciency more.
How is this approach possible ?
thank you in advance