Artem Community
Artem interactive communities
VisualStudion 2010 Javascript Outlining 1.2

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
  • code block
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
Powered by Community Server (Non-Commercial Edition), by Telligent Systems