{# Code block macro with syntax highlighting and copy button #} {% macro code(content, language='', filename='', show_line_numbers=false) %}
{% if filename %}
{{ filename }}
{% endif %}
{{ content }}
{% endmacro %} {# Inline code #} {% macro inline(content) %} {{ content }} {% endmacro %} {# Install command (special styling) #} {% macro install(command) %}
$ {{ command }}
{% endmacro %}