Is there a way to force sass to leave closed css comments untouched,
or more specifically to make jDoc style comments?

Currently if I write

/** one line */

i get

/* * one line */

And if I write

/**
 * multi line
 */

I get an error for indenting with one space. So I tried a "work
around"

/**
  sample comment
  */

And I get

/* *
 * sample comment
 * */

I believe this is the line (and probably the lines before it)

> spaces + "/* " + content.join(style == :compact ? '' : "\n#{spaces} *") + " 
> */"

line 60 in file "ruby\lib\ruby\gems\1.8\gems\haml-edge-2.3.13\lib\sass
\tree\comment_node.rb"

I am no ruby guy, but I played a little bit with the file and now
matter what I tried, I couldn't achieve the desired effect.

Anyone having an idea?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to