diff --git a/cli2md.py b/cli2md.py index b83cf70..945bd2e 100644 --- a/cli2md.py +++ b/cli2md.py @@ -60,7 +60,7 @@ def fmt_categories(cats): st = [] for c in cats: st.append("[{}](#{}) ({})".format(cats[c]['name'], c, cats[c]['count'])) - return ' | '.join(st) + return ', '.join(st) def count_apps(apps, categories):