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
Hi!
I use slim-rails gem version 3.0.1 and I have seen that slim removes implicit whitespaces declared with > or <. For example if I use:
slim-rails
>
<
span => my_variable_string / or span =< my_variable_string
Slim definition
Output with trailing white space =>. Same as the single equal sign (=), except that it adds a trailing white space.
=>
Output with leading white space =<. Same as the single equal sign (=), except that it adds a leading white space.
=<
The code shows me a whitespace after or before but using the HTML minification (option pretty: false), it removes the implicite whitespaces. Any idea?
pretty: false
The text was updated successfully, but these errors were encountered:
It looks like the latest version of master (which reverts the change to enabling pretty mode only in development) just hasn't been tagged yet.
Sorry, something went wrong.
No branches or pull requests
Hi!
I use
slim-rails
gem version 3.0.1 and I have seen that slim removes implicit whitespaces declared with>
or<
. For example if I use:Slim definition
Output with trailing white space
=>
. Same as the single equal sign (=), except that it adds a trailing white space.Output with leading white space
=<
. Same as the single equal sign (=), except that it adds a leading white space.The code shows me a whitespace after or before but using the HTML minification (option
pretty: false
), it removes the implicite whitespaces. Any idea?The text was updated successfully, but these errors were encountered: