Skip to content

Commit a1707c8

Browse files
authored
Fix mustache tag formatting in documentation (#62)
I just tried using `{{ #mrTaskId }}` and this did not work but `{{#mrTaskId}}` does
1 parent 7ee3f00 commit a1707c8

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

_documentation/creating-challenges/08-mustache-tag-replacement.en_US.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ To reference a property, surround its name with double curly braces or "mustache
1313
## Workspace Properties
1414
Some workspaces, notably Task Completion, make additional properties available for substitution that are specific to the workspace state rather than the task itself. These "workspace" properties always begin with a hash (`#`), e.g. `#mapZoom`, to avoid confusion with task feature properties. Workspace properties are always case-sensitive. The following workspace properties may be available (as with task feature properties, mustache tags referencing missing workspace properties will be replaced with empty text):
1515

16-
`{{ #mapBBox }}`: a WSEN comma-separated bounding box of the current map bounds
16+
`{{#mapBBox}}`: a WSEN comma-separated bounding box of the current map bounds
1717

18-
`{{ #mapWest }}`: the longitude of the west side of the current map bounds
18+
`{{#mapWest}}`: the longitude of the west side of the current map bounds
1919

20-
`{{ #mapSouth }}`: the latitude of the south side of the current map bounds
20+
`{{#mapSouth}}`: the latitude of the south side of the current map bounds
2121

22-
`{{ #mapEast }}`: the longitude of the east side of the current map bounds
22+
`{{#mapEast}}`: the longitude of the east side of the current map bounds
2323

24-
`{{ #mapNorth }}`: the latitude of the north side of the current map bounds
24+
`{{#mapNorth}}`: the latitude of the north side of the current map bounds
2525

26-
`{{ #mapZoom }}`: the current zoom of the map
26+
`{{#mapZoom}}`: the current zoom of the map
2727

28-
`{{ #mapLat }}`: The latitude of the map’s current centerpoint
28+
`{{#mapLat}}`: The latitude of the map’s current centerpoint
2929

30-
`{{ #mapLon }}`: The longitude of the map’s current centerpoint
30+
`{{#mapLon}}`: The longitude of the map’s current centerpoint
3131

32-
`{{ #osmType }}`: The type (node/way/relation) of the current task feature if it can be determined
32+
`{{#osmType}}`: The type (node/way/relation) of the current task feature if it can be determined
3333

34-
`{{ #osmId }}`: The numerical OSM id of the current task feature if it can be determined
34+
`{{#osmId}}`: The numerical OSM id of the current task feature if it can be determined
3535

36-
`{{ #mrTaskId }}`: the internal MapRoulette id of the current task (not the OSM id)
36+
`{{#mrTaskId}}`: the internal MapRoulette id of the current task (not the OSM id)
3737

3838
{% endraw %}

0 commit comments

Comments
 (0)