Changes between Initial Version and Version 1 of Ticket #23932, comment 19
- Timestamp:
- 2024-09-23T21:49:00+02:00 (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23932, comment 19
initial v1 3 3 ---- 4 4 5 Changing `[cycleway!=lane]` into `[cycleway!=lane][cycleway!=separate]` requires you to also update the capture number in the warning thrown: `{2.tag}` now becomes `{3.tag}`. Or you can move both the `!=`-selectors to the end (and make it `{1.tag}`) or you can make use of `[cycleway!~/^(lane|separate)$/]`. Fully up to you (IMO) which of the three you prefer.5 Changing `[cycleway!=lane]` into `[cycleway!=lane][cycleway!=separate]` (and similar for the other 3) requires you to also update the capture number in the warning thrown: `{2.tag}` now becomes `{3.tag}`. Or you can move both the `!=`-selectors to the end (and make it `{1.tag}`) or you can make use of `[cycleway!~/^(lane|separate)$/]`. Fully up to you (IMO) which of the three you prefer. 6 6 7 7 ----