♻️ refactor: add target_attribute macro

This commit is contained in:
2025-04-28 16:11:01 +07:00
parent cbb52d74a4
commit 74abf0aac6
5 changed files with 15 additions and 15 deletions

View File

@@ -7,11 +7,7 @@
{% break %}
{% endif %}
{# Determine which URL to use, default is page.permalink #}
{%- if page.extra.link_to and config.markdown.external_links_target_blank -%}
{%- set blank_target = "target=_blank" -%}
{%- else -%}
{%- set blank_target = "" -%}
{%- endif -%}
{%- set blank_target = macros_target_attribute::target_attribute(new_tab=config.markdown.external_links_target_blank and page.extra.link_to) -%}
{% set target_url = page.extra.link_to | default(value=page.permalink) %}