From 0146865a3321cc3e02fa4141caa000b422bd414d Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 17 Feb 2019 21:13:36 -0500 Subject: Add hi -f html -o anchor for line number links --- bin/hi.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'bin/hi.c') diff --git a/bin/hi.c b/bin/hi.c index b3584b10..baee9517 100644 --- a/bin/hi.c +++ b/bin/hi.c @@ -312,6 +312,7 @@ static void check(void) { } #define ENUM_OPTION \ + X(Anchor, "anchor") \ X(CSS, "css") \ X(Document, "document") \ X(Inline, "inline") \ @@ -503,6 +504,19 @@ static void htmlHeader(const char *opts[]) { htmlTabSize(opts[Tab]); printf(" }\n"); } + if (opts[Anchor]) { + printf( + "a.hi.%s { text-decoration: none; %s }\n" + "a.hi.%s:focus {" + " outline-style: none;" + " font-weight: bold;" + " text-decoration: underline;" + " }\n" + "a.hi.%s::before { content: attr(data-line); }\n", + ClassName[Line], HTMLStyle[Line], + ClassName[Line], ClassName[Line] + ); + } for (enum Class class = 0; class < ClassLen; ++class) { if (!HTMLStyle[class]) continue; printf("span.hi.%s { %s }\n", ClassName[class], HTMLStyle[class]); @@ -526,6 +540,16 @@ static void htmlFooter(const char *opts[]) { static void htmlOutput(const char *opts[], enum Class class, const char *str, size_t len) { + if (opts[Anchor] && class == Line) { + size_t num = 0; + sscanf(str, " %zu", &num); + printf( + "" + "", + ClassName[class], num, num, (int)len, str + ); + return; + } if (opts[Inline]) { printf("", HTMLStyle[class] ? HTMLStyle[class] : ""); } else { -- cgit 1.4.1