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
This template:
div <img src="/">
Causes this compile time error:
Syntax error in expanded macro: macro_4629572560:239: unexpected token: DELIMITER_START __kilt_io__ << ("<img src="/">").to_s(__kilt_io__) ^
The " symbol isn't being escaped, and it's causing an error in the string literal.
"
A quick workaround for this is to use single quotes.
slang 1.7.1 crystal 0.24.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This template:
Causes this compile time error:
The
"
symbol isn't being escaped, and it's causing an error in the string literal.A quick workaround for this is to use single quotes.
slang 1.7.1
crystal 0.24.2
The text was updated successfully, but these errors were encountered: