{% set desc = extractor.product_property_documentation(key, value)|safe %}
{% set attributes_to_show = kwargs["attributes_to_show"] %}
{% set ignore = kwargs["attributes_to_ignore"] %}
{% if key not in ignore %}
{{ extractor.html_links(key)|safe}}
{{ extractor.product_property(key, value)|safe }}
{% if desc %}
{{ desc }}
{% endif %}
{% if key in attributes_to_show %}
{{ extractor.html(value, name=key)|safe }}
{% endif %}