In my master a partial _styles is loaded. In this _styles there is a ^var styles = "" Now in all my views or partials I can say var styles = styles+"another style"

Normally a style is defined as

%link{ href="../../content/css/partial.css" rel="stylesheet" type="text/css" }

How can I append the output of the %link directive to the styles variable?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I wrote a post about adding styles and links with the NHAML.
This should do all job for you.

link|improve this answer
Thanks, I didn't know these existed: Html.Content().EmitCss(css) That should answer my question – Boris Callens Nov 16 '09 at 8:51
These really DO NOT exist. These are my extension methods to siplify things on the view. – Dmytrii Nagirniak Nov 16 '09 at 8:52
In that case, how do you make sure the intendation of your output is correct? – Boris Callens Nov 16 '09 at 14:58
NHAML indents the output, not me. Only one thing is that there will be empty lines if there are no CSS/JS files included. But I do not see how it can be an issue. – Dmytrii Nagirniak Nov 16 '09 at 22:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.