{% macro badge(stability, deprecated, note) -%} {%- if deprecated %}![Deprecated](https://img.shields.io/badge/-deprecated-red)
{{ deprecated_note(deprecated, note) }} {%- elif stability == "mixed" %}![Mixed](https://img.shields.io/badge/-mixed-yellow) {%- elif stability == "stable" %}![Stable](https://img.shields.io/badge/-stable-lightgreen) {%- elif stability == "release_candidate" %}![Release Candidate](https://img.shields.io/badge/-rc-mediumorchid) {%- elif stability == "deprecated" %}![Deprecated](https://img.shields.io/badge/-deprecated-red) {%- elif stability == "experimental" %}![Development](https://img.shields.io/badge/-development-blue) {%- elif stability == "development" %}![Development](https://img.shields.io/badge/-development-blue) {%- else %}{{ "Unknown stability." }} {%- endif %} {%- endmacro %} {% macro htmlbadge(stability, deprecated) -%} {%- if deprecated %}Deprecated {%- elif stability == "mixed" %}Mixed {%- elif stability == "stable" %}Stable {%- elif stability == "release_candidate" %}Release Candidate {%- elif stability == "deprecated" %}Deprecated {%- elif stability == "experimental" %}Development {%- elif stability == "development" %}Development {%- else %}{{ "Unknown stability." }} {%- endif %} {%- endmacro %} {% macro deprecated_note(deprecated, note) %}{{ (deprecated.note if deprecated.note is defined else note) | trim }}{%- endmacro %}