Hello, I am trying to get up to speed on implementing a TypeWriter based on the Set example. How do you feel about adding a "{{.name}}" template variable which is just the lowercased version of "{{.Name}". Perhaps this is simply a templating problem and there is a way I can do this myself? This is useful for things like:
{{.name}} := &{{.Name}}{}
Alternatively, I could achieve this if there was some sort of function that allows us to inject our own template helpers from the most basic information you provide us such as Pointer, Name, and any other arguments I might be missing. Is there currently a way to do any of these things?
Hello, I am trying to get up to speed on implementing a TypeWriter based on the Set example. How do you feel about adding a "{{.name}}" template variable which is just the lowercased version of "{{.Name}". Perhaps this is simply a templating problem and there is a way I can do this myself? This is useful for things like:
Alternatively, I could achieve this if there was some sort of function that allows us to inject our own template helpers from the most basic information you provide us such as Pointer, Name, and any other arguments I might be missing. Is there currently a way to do any of these things?