diff --git a/commonBody.html b/commonBody.html
index 52dc8c18e..7044bc4f9 100644
--- a/commonBody.html
+++ b/commonBody.html
@@ -1,35 +1,39 @@
-
-
+
{% set address = tagsPrefix(tags, 'addr:') %}
{% if address %}
--
-
-{{ keyTrans('addr') }}:
-
-
-{{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
-
+-
+
+ {{ keyTrans('addr') }}
+
+ {{ attribute(tags, 'addr:street') }}
+ {{ attribute(tags, 'addr:housenumber') }},
+ {{ attribute(tags, 'addr:postcode') }}
+ {{ attribute(tags, 'addr:city') }}
+
+
{% endif %}
{% if tags.phone %}
--
-
-{{ keyTrans('phone') }}:
-
--
-{{ tags.phone }}
-
+-
+
+ {{ keyTrans('phone') }}
+
+ {{ tags.phone }}
+
+
{% endif %}
{% set payment = tagsPrefix(tags, 'payment:') %}
{% if payment %}
--
-
-{{ keyTrans('payment') }}:
-
-
-{% for k, tag in payment %}
-{% if tags[tag] == 'no' %}
{{ k }} {% else %}{{ k }} {% endif %}
-{% endfor %}
-
+-
+
+ {{ keyTrans('payment') }}
+
+ {% for k, tag in payment %}
+ {% if tags[tag] == 'no' %}
{{ k }} {% else %}{{ k }} {% endif %}
+ {% endfor %}
+
+
{% endif %}
-
+
diff --git a/gastro.json b/gastro.json
index 41f87a2b9..88ac064f3 100644
--- a/gastro.json
+++ b/gastro.json
@@ -21,7 +21,7 @@
},
"feature": {
"markerSign": "{% if tags.amenity=='bar' %}🍸{% elseif tags.amenity=='biergarten'%}🍻{% elseif tags.amenity=='cafe' %}☕{% elseif tags.amenity=='fast_food' %}🍔{% elseif tags.amenity=='ice_cream' %}🍨{% elseif tags.amenity=='pub' %}🍺{% else %}🍴{% endif %}",
- "body": "{{ tagTrans('amenity', tags.amenity) }}
{{ keyTrans('cuisine') }}: {{ tagTransList('cuisine', tags.cuisine)|default(trans('unknown')) }}",
+ "body": "\n{{ tagTrans('amenity', tags.amenity) }}\n\n\n - \n \n {{ keyTrans('cuisine') }}\n {{ tagTransList('cuisine', tags.cuisine)|default(trans('unknown')) }}\n
\n
",
"description": "{{ tagTrans('amenity', tags.amenity) }}"
}
}