summaryrefslogtreecommitdiff
path: root/templates/macros/rel_attributes.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/macros/rel_attributes.html')
-rw-r--r--templates/macros/rel_attributes.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/macros/rel_attributes.html b/templates/macros/rel_attributes.html
deleted file mode 100644
index 71672c7..0000000
--- a/templates/macros/rel_attributes.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% macro rel_attributes() %}
-
-{%- set rel_attributes = [] -%}
-{%- if config.markdown.external_links_target_blank -%}
- {%- set rel_attributes = rel_attributes | concat(with="noopener") -%}
-{%- endif -%}
-{# https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel#nofollow #}
-{# This is ignored, as it doesn't make sense to set `nofollow` on projects or social links. #}
-{# {%- if config.markdown.external_links_no_follow -%}
- {%- set rel_attributes = rel_attributes | concat(with="nofollow") -%}
-{%- endif -%} #}
-{%- if config.markdown.external_links_no_referrer -%}
- {%- set rel_attributes = rel_attributes | concat(with="noreferrer") -%}
-{%- endif -%}
-
-{# Return the array of rel attributes joined by a space #}
-{{- rel_attributes | join(sep=" ") -}}
-
-{% endmacro rel_attributes %}