diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-08-19 12:11:23 +0200 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-08-19 12:11:23 +0200 |
commit | a94b2f5d007c6f38653788a04486429c99bba1af (patch) | |
tree | 3cae3fdd958ca8df2b8340beac367221e79b2003 | |
parent | ec8c670d6a078baf186edfe69f32a6097c0f06ed (diff) |
fix #65
-rwxr-xr-x | bb.sh | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -596,8 +596,7 @@ parse_file() { echo -n "<p>$template_tags_line_header " >> "$content" (for item in "${array[@]}"; do echo -n "<a href='$prefix_tags$item.html'>$item</a>, " - done ) | sed 's/, $//g' >> "$content" - echo -e "</p>" >> "$content" + done ) | sed 's/, $/<\/p>/g' >> "$content" else echo "$line" >> "$content" fi |