diff --git a/leisure.json b/leisure.json
index 7a01806..4da0924 100644
--- a/leisure.json
+++ b/leisure.json
@@ -28,9 +28,17 @@
     },
     "feature": {
         "description": [
-            "{{ tagTrans('leisure', tags.leisure) }}",
             "{% if tags.leisure == 'pitch' and tags.sport %}",
-            "- {{ tagTransList('sport', tags.sport) }}",
+            "  {% set pitchName = tagTrans('leisure', 'pitch sport=' ~ tags.sport) %}",
+            "{% endif %}",
+            "",
+            "{% if pitchName and pitchName != tags.sport %}",
+            "  {{ pitchName }} ",
+            "{% else %}",
+            "  {{ tagTrans('leisure', tags.leisure) }}",
+            "  {% if tags.leisure == 'pitch' and tags.sport %}",
+            "    - {{ tagTransList('sport', tags.sport) }}",
+            "  {% endif %}",
             "{% endif %}"
         ]
     }