Changes between Version 33 and Version 34 of Help/Styles/MapCSSImplementation


Ignore:
Timestamp:
2014-01-05T16:34:57+01:00 (12 years ago)
Author:
simon04
Comment:

+comment

Legend:

Unmodified
Added
Removed
Modified
  • Help/Styles/MapCSSImplementation

    v33 v34  
    2020 - analyze the final list of properties and generate styles from it
    2121}}}
     22
     23MapCSS uses the '''comment''' format of CSS (`/* ... */`). Note that when commenting out large parts of a MapCSS file, some constructs may cause an unexpected end of the comment, for instance:
     24{{{
     25#!mapcss
     26/*
     27*[highway][name =~ /^R(\.|:)? .*/] { /* the end of the regular expression defines the unexpected end of the comment */
     28        throwWarning: tr("foo");
     29}
     30*/
     31}}}
    2232
    2333== Selectors ==