I would like to use tumblr themes in my CSS output.
So, in my SCSS file, I have something like below.
article * img {
max-width: 100%;
{block:PermalinkPage}
if is permalink page do this.
min-width: 100;
{/block:PermalinkPage}
}
So the question is, can you tell SASS not to compile or ignore a particular section. Say, wrapping it with special characters and print as-is?
article * img {
max-width: 100%;
\{block:PermalinkPage}\
if is permalink page do this.
min-width: 100;
\{/block:PermalinkPage}\
}
source
share