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
Can we use "tag interpolation"?
e.g. span.t1 click #[a(href="go/here") this] link should produce <span class="t1">click <a href="go/here">this</a> link</span>.
span.t1 click #[a(href="go/here") this] link
<span class="t1">click <a href="go/here">this</a> link</span>
Maybe I'm just not finding this in the readme? I haven't searched in code yet.
The text was updated successfully, but these errors were encountered:
I couldn't find this sort of interpolation in the code, but I'm not exactly sure where to look or what to look for.
If I want to add this functionality, where would you suggest it belongs?
Sorry, something went wrong.
inline slm is not supported. only inline html tags
span.t1 click <a href="go/here">this</a> link
OK. Thanks for the confirmation. Any insight into where in code such a modification belongs?
No branches or pull requests
Can we use "tag interpolation"?
e.g.
span.t1 click #[a(href="go/here") this] link
should produce<span class="t1">click <a href="go/here">this</a> link</span>
.Maybe I'm just not finding this in the readme? I haven't searched in code yet.
The text was updated successfully, but these errors were encountered: