3 #==============================================================================
5 # File ID: bb0ba9cc-7c24-11e9-826b-4f45262dc9b5
7 # Convert the output from "git log" to Commonmark (Markdown).
9 # Author: Øyvind A. Holm <sunny@sunbase.org>
10 # License: GNU General Public License version 2 or later.
11 #==============================================================================
16 if test "$1" = "-h" -o "$1" = "--help"; then
19 Convert the output from "git log" to Commonmark (Markdown).
21 Usage: $progname [-h|--help|args to git log]
28 All other options and arguments are sent to "git log".
32 $progname | cmark | lynx -stdin
33 $progname --name-status --since=1.year | cmark >x.html; firefox x.html
41 s/^commit/-----\n\n commit/;
47 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :