A support for CSS content type was added in order to use outlining in CSS files, as well.
Features
- Outlines CSS codeblock regions for the code placed between { }. The closing brace is places on a new line and there is not another opeing brace on same line.
- Outlines custom regions defined by:
- /#region/ - /#endregion/
- /#>/ - /#</
Samples
body {
background-color: #AAA;
font-family: Verdana;
font-size: 11px;
}
- long custom region definition
/*#region Test */
body {
background-color: #AAA;
font-family: Verdana;
font-size: 11px;
}
h1, h2, h3, h4 {
color: #5377A9;
font-family: Tahoma;
}
/*#endregion*/
- short custom region definition
/*#> Test */
body {
background-color: #AAA;
font-family: Verdana;
font-size: 11px;
}
h1, h2, h3, h4 {
color: #5377A9;
font-family: Tahoma;
}
/*#<*/
Posted
07-29-2010 18:11
by
velio