jet icon indicating copy to clipboard operation
jet copied to clipboard

Jet template engine

Results 23 jet issues
Sort by recently updated
recently updated
newest added

I'm sure this is a stupidly simple problem - but I'm staring at it and just can't see what is going on! Views are in a folder two levels below...

Hi there, please consider following: ``` type Mode uint8 const ( Reserved Mode = iota Foo Bar ) ``` ``` func (m Mode) String() string { switch m { case...

I put back YieldTemplate which was removed earlier. I am using it in my code to "insert" template files. Please put it back. Thank you very much in advance.

Go 1.16 introduces the fs package and a FS interface. Implementing a Jet loader for this seems like an ideal use case. Are there any plans for this, would it...

Hello: I really like this package. The only thing I have not figured out (and it's not a criticism, but a question) is how to use it in an IDE...

Consider the following: ``` Params.jet -> {{ param1 := 1 }} {{ param2 := 2 }} {{ param3 := 3 }} {{ param4 := 4 }} ``` then import Params.jet...

Opening a PR with a _prototype_ as a means to discuss custom resolvers. [Based off of this comment](https://github.com/CloudyKit/jet/issues/110#issuecomment-749494289) in #110, custom resolvers allow us to override default functionality when executing...

After tinkering with Jet using custom delimiters I was able to reproduce the following problem directly on Jet test suite. - modified file : `testData/custom_delimiters.jet` - first line now reads:...

Having to check every variable on whether it exists or not before using it makes Jet templates kind of verbose. Also, front end developers are used to invalid expressions simply...

i'd like to use pipelinig inside a yield expression to pass a translation to a block `{{yield inputField(id="email", name="email", type="email", label="login.form.label.email"|T:"Email",map(),"account", icon="fa-envelope", required=true)}}` the parser seems to die inside "label"...