From 73e1ff454a70373121de513df898421409e5a0a2 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 19 Jan 2021 21:27:23 -0500 Subject: Map tags to IDs using only [[:alnum:]-._] --- bin/htagml.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/bin/htagml.c b/bin/htagml.c index 4df40d13..3d555dc8 100644 --- a/bin/htagml.c +++ b/bin/htagml.c @@ -14,6 +14,7 @@ * along with this program. If not, see . */ +#include #include #include #include @@ -51,6 +52,16 @@ static size_t escape(bool esc, const char *ptr, size_t len) { return len; } +static void id(const char *tag) { + for (const char *ch = tag; *ch; ++ch) { + if (isalnum(*ch) || strchr("-._", *ch)) { + putchar(*ch); + } else { + putchar('_'); + } + } +} + static char *hstrstr(const char *haystack, const char *needle) { while (haystack) { char *elem = strchr(haystack, '<'); @@ -152,7 +163,7 @@ int main(int argc, char *argv[]) { if (index) { if (!tag) continue; printf("
  • tag, strlen(tag->tag)); + id(tag->tag); printf("\">"); escape(true, tag->tag, strlen(tag->tag)); printf("
  • \n"); @@ -181,9 +192,9 @@ int main(int argc, char *argv[]) { } escape(!pipe, buf, match - buf); printf("tag, strlen(tag->tag)); + id(tag->tag); printf("\" href=\"#"); - escape(true, tag->tag, strlen(tag->tag)); + id(tag->tag); printf("\">"); match += escape(!pipe, match, mlen); printf(""); -- cgit 1.4.1 name='id' value='9993c88024f45401d84bfa7267620aa97328c1d0'/>
    Commit message (Expand)Author
    2021-10-14Import LibreSSL 3.4.1June McEnroe
    2021-09-17Import LibreSSL 3.4.0June McEnroe
    2021-08-24Import LibreSSL 3.3.4June McEnroe
    2021-05-25Bump version to 3.3.3p1 3.3.3p1June McEnroe
    2021-05-25build: Add scripts to EXTRA_DISTJune McEnroe
    2021-05-25import: Add missing scripts/wrap-compiler-for-flag-checkJune McEnroe
    2021-05-08Import LibreSSL 3.3.3June McEnroe
    2021-04-18build: Remove added x509_verify.3 links 3.3.2June McEnroe
    2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe
    2021-04-18Import LibreSSL 3.3.2June McEnroe
    2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe
    2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe
    2020-12-15Import LibreSSL 3.3.1June McEnroe
    2020-11-24Import LibreSSL 3.3.0June McEnroe
    2020-10-22Import LibreSSL 3.2.2June McEnroe
    2020-09-29Import LibreSSL 3.2.1June McEnroe
    2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
    2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
    2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe