From a4145e7a9d15af7e9180d6aeacf099ffbda569a7 Mon Sep 17 00:00:00 2001 From: Tullio Facchinetti Date: Mon, 28 Aug 2023 19:13:07 +0200 Subject: [PATCH] Replaced | with , as separator of categories in the summary --- cli2md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):