~will-clarke/super-simple-static-site-generator

576cd3a1fc368fabb74f2fcd968c7b2819557d90 — William Clarke 2 years ago 25c71f4
Behold the all-important '#'
1 files changed, 1 insertions(+), 1 deletions(-)

M ssssg
M ssssg => ssssg +1 -1
@@ 77,7 77,7 @@ generate_tmp_files() {

        # Add a heading from every post into the index.md / posts.md
        # and generate all our tags
        printf "# [%s](%s)\n%s\n%s\n\n" "$title" "$dst_path" "$description" "$linked_tags" >> tmp/index.md
        printf "## [%s](%s)\n%s\n%s\n\n" "$title" "$dst_path" "$description" "$linked_tags" >> tmp/index.md
        printf -- "- *%s* [%s](%s)\n\n" "$post_date" "$title" "$dst_path" >> tmp/posts.md
        echo "$split_tags" | xargs -I "{tag}" sh -c "echo \"- *[$title](/$dst_path)* $post_date\" >> tmp/tags/{tag}.md"
        if [ -n "$linked_tags" ]; then