diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-05-20 10:16:34 +0200 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-05-20 10:16:34 +0200 |
commit | efbb68dfb444f1e3f42dabf39bf4fb1c1072d59a (patch) | |
tree | 90fcd98163c96dacc308be618c3c1ca6aebc38ea /bb.sh | |
parent | e5b831b3756f931e77dd2d1c0d10337a9f9fba3f (diff) |
Fixed additional characters in all_tags.html
Diffstat (limited to 'bb.sh')
-rwxr-xr-x | bb.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 "<li><a href="$i">$tagname</a> — $nposts $template_tags_posts</li>" >> "$contentfile" + i="`clean_filename $i`" + echo "<li><a href=\"$i\">$tagname</a> — $nposts $template_tags_posts</li>" >> "$contentfile" done echo "" echo "</ul>" >> "$contentfile" |