From d004776acf0ef6bb360800ba08121ee159b4fd81 Mon Sep 17 00:00:00 2001 From: Deimos Date: Tue, 30 Jul 2019 18:20:43 -0600 Subject: [PATCH] Fix excess whitespace around group_linked macro Previously this would add whitespace before/after any time this was called, which isn't always wanted. --- tildes/tildes/templates/macros/links.jinja2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tildes/tildes/templates/macros/links.jinja2 b/tildes/tildes/templates/macros/links.jinja2 index b407998..8059239 100644 --- a/tildes/tildes/templates/macros/links.jinja2 +++ b/tildes/tildes/templates/macros/links.jinja2 @@ -5,6 +5,6 @@ {{ username }} {%- endmacro %} -{% macro group_linked(group_path) %} +{% macro group_linked(group_path) -%} ~{{ group_path }} -{% endmacro %} +{%- endmacro %}