From ee5118acd34d8847e65625ec10904361d6d78172 Mon Sep 17 00:00:00 2001 From: Kevin Lin <kevinl@cs.uw.edu> Date: Sat, 4 Jul 2020 17:05:01 -0700 Subject: [PATCH] _layouts: Remove space between main and info in module --- _layouts/module.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/module.html b/_layouts/module.html index 76fb0ba..8c7d071 100644 --- a/_layouts/module.html +++ b/_layouts/module.html @@ -16,7 +16,7 @@ {% assign info = event | last %} {% capture main %}{% include eval.liquid content=main %}{% endcapture %} {% capture info %}{% include eval.liquid content=info %}{% endcapture %} - <dd class="module-event">{{ main | markdownify }} {{ info | markdownify }}</dd> + <dd class="module-event">{{ main | markdownify }}{{ info | markdownify }}</dd> {% endfor %} {% endfor %} </dl> -- GitLab