Changes between Version 152 and Version 153 of Help/Styles/MapCSSImplementation


Ignore:
Timestamp:
2019-03-11T18:20:33+01:00 (7 years ago)
Author:
mkoniecz
Comment:

remove false claims of case insensitivity - see https://josm.openstreetmap.de/ticket/17398

Legend:

Unmodified
Added
Removed
Modified
  • Help/Styles/MapCSSImplementation

    v152 v153  
    250250{{{
    251251#!mapcss
    252 way[highway=residential]                   /* without quotes always case insensitive */
     252way[highway=residential]
    253253node[name="My name"]                       /* use quotes for if value includes spaces or if case sensitive matching is important */
    254254node["MY_Special_TAG"="another value"]     /* use quotes for tag names if case sensitive matching is required */
     
    267267{{{
    268268#!mapcss
    269 way[highway!=residential]                   /* without quotes always case insensitive */
     269way[highway!=residential]
    270270node[name!="My name"]                       /* use quotes if value includes spaces or if case sensitive matching is important */
    271271node["MY_Special_TAG"!="another value"]     /* use quotes for tag names if case sensitive matching is required */
     
    541541{{{
    542542#!mapcss
    543 relation >[role=residential] way           /* without quotes always case insensitive */
     543relation >[role=residential] way           
    544544relation >[role="My name"]   way           /* use quotes for if the role value includes spaces or if case sensitive matching is important */
    545545}}}