From 86363c1dae1da3eb39df356a56aa066341960ea4 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Thu, 24 Apr 2025 17:24:02 +0200 Subject: [PATCH] Small doc improvement --- formatter/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formatter/formatter.go b/formatter/formatter.go index 71d10c9..1c29f3d 100644 --- a/formatter/formatter.go +++ b/formatter/formatter.go @@ -113,7 +113,7 @@ func formatActor(jsonStr string, parts []string, bold, cyan, green, red, yellow return parts } -// formatContent formats content-type objects (Note, Article, etc.) +// formatContent formats content-type objects (Note, Article, Page, etc.) func formatContent(jsonStr string, parts []string, bold, green, yellow func(a ...interface{}) string) []string { if content := gjson.Get(jsonStr, "content").String(); content != "" { md := htmlToMarkdown(content)