From 6e707e41315e064c55494cebcc2f273665d2d3fb Mon Sep 17 00:00:00 2001 From: SeraphRoy Date: Fri, 29 Jun 2018 13:16:05 -0700 Subject: [PATCH] changes so that tags can contain spaces --- page/2tags.html | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/page/2tags.html b/page/2tags.html index eac7f2b..f2a8c9e 100644 --- a/page/2tags.html +++ b/page/2tags.html @@ -10,13 +10,11 @@

{{page.title}}


- {% capture tags %} - {% for tag in site.tags %} - {{ tag[0] }} - {% endfor %} - {% endcapture %} - {% assign sortedtags = tags | split:' ' | sort %} - + {% assign alltags = '' | split: '' %} + {% for tag in site.tags %} + {% assign alltags = alltags | push: tag[0]%} + {% endfor %} + {% assign sortedtags = alltags | sort %}