We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
mixin inner(foo) div Foo is #{foo} mixin outer +inner("Bar") +outer
Outputs this:
// Code generated by "jade.go"; DO NOT EDIT. package views import ( "io" ) const ( index__0 = `<div>Foo is ` index__1 = `</div>` ) func Jade_index(wr io.Writer) { buffer := &WriterAsBuffer{wr} { { buffer.WriteString(index__0) WriteAll(foo, true, buffer) buffer.WriteString(index__1) } } }
As you can see, inner's foo parameter isn't resolved which results in an undefined reference.
inner
foo
The text was updated successfully, but these errors were encountered:
I see the same problem and don't have a workaround at the moment.
Sorry, something went wrong.
I ended up writing my own library lol, there's absolutely no documentation though.
No branches or pull requests
For example:
Outputs this:
As you can see,
inner
'sfoo
parameter isn't resolved which results in an undefined reference.The text was updated successfully, but these errors were encountered: