From a9349a131bfc980836964c2c6b5177152e8d8a91 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 28 Jan 2014 08:13:13 -0500 Subject: [PATCH] Tags are comma-separated --- nb2nikola.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nb2nikola.pl b/nb2nikola.pl index 6c20af3..46820fa 100755 --- a/nb2nikola.pl +++ b/nb2nikola.pl @@ -38,9 +38,9 @@ foreach my $file (@files) $article =~ m/(.*\.txt).*/; if(exists($tags{$1})) { - $tags{$1} .= $category . " "; + $tags{$1} .= ", $category"; } else { - $tags{$1} = $category . " "; + $tags{$1} = $category; } }