pub / git_activity

Generates Github-style activity graphs as HTML
git clone https://src.jayvii.de/pub/git_activity.git
Home | Log | Files | Exports | Refs | README | RSS

commit baa57d95c95316a9e9343e48e8b691702c42c15f
parent fa3b037caf96055d9dd860b35f4f8cba10bf5fd3
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat,  8 Jun 2024 13:37:27 +0200

fix: remove unused closing quote

Diffstat:
Mactivity.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/activity.sh b/activity.sh @@ -26,7 +26,7 @@ function html_output { CL="activitypoint" STL="opacity:calc($OPC/100);" ARGS="id=\"$ID\" class=\"activitypoint\" style=\"$STL\" title=\"$TTL\"" - printf "<span $ARGS\">&#9632;</span>" + printf "<span $ARGS>&#9632;</span>" } # Collect activity -------------------------------------------------------------