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
br_str = "</br>" br_htl_str = @htl "$br_str" # </br>
If no, is there a way to join htl strings? Like
br = @htl "</br>" join([br, br], @htl "") # </br></br>
The text was updated successfully, but these errors were encountered:
Hey! HypertextLiteral has the interpolation feature for this. When you interpolate a vector of items, they will be inserted one-by-one.
julia> b1 = @htl "</br>" </br> julia> @htl "$([b1, b1])" </br></br> julia> b2 = "</br>" "</br>" julia> @htl "$([b2, b2])" </br></br>
Sorry, something went wrong.
No branches or pull requests
If no, is there a way to join htl strings? Like
The text was updated successfully, but these errors were encountered: