{# -*- coding: utf-8 -*- This file is part of Invenio. Copyright (C) 2016-2018 CERN. Invenio is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {# Generate a list different ways to embed a badge. #} {%- macro badges_formats_list(image_filename, target, alternative='DOI') %}

Markdown

[![{{ alternative }}]({{ image_filename }})]({{ target }})

reStructedText

.. image:: {{ image_filename }}
   :target: {{ target }}

HTML

<a href="{{ target }}"><img src="{{ image_filename }}" alt="{{ alternative }}"></a>

Image URL

{{ image_filename }}

Target URL

{{ target }}

{%- endmacro %}