From efbb68dfb444f1e3f42dabf39bf4fb1c1072d59a Mon Sep 17 00:00:00 2001 From: Carlos Fenollosa Date: Tue, 20 May 2014 10:16:34 +0200 Subject: [PATCH] Fixed additional characters in all_tags.html --- bb.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bb.sh b/bb.sh index a00a238..0552f15 100755 --- a/bb.sh +++ b/bb.sh @@ -703,7 +703,8 @@ all_tags() { echo -n "." nposts="$(grep -c "<\!-- text begin -->" $i)" tagname="$(echo $i | cut -c $((${#prefix_tags}+3))- | sed 's/\.html//g')" - echo "
  • $tagname — $nposts $template_tags_posts
  • " >> "$contentfile" + i="`clean_filename $i`" + echo "
  • $tagname — $nposts $template_tags_posts
  • " >> "$contentfile" done echo "" echo "" >> "$contentfile"