From 73834b84127b860a3a682a65d7ce10b449d03412 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Fri, 10 Feb 2012 15:40:33 +0900 Subject: [PATCH] Correct meta@name=generator output. --- src/lexer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lexer.c b/src/lexer.c index c5b4983..ec759cf 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -1408,10 +1408,10 @@ Bool TY_(AddGenerator)( TidyDocImpl* doc ) if (head) { #ifdef PLATFORM_NAME - TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy for "PLATFORM_NAME" (vers %s), see www.w3.org", + TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy for "PLATFORM_NAME" from https://github.com/w3c/tidy-html5", tidyReleaseDate()); #else - TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy (vers %s), see www.w3.org", tidyReleaseDate()); + TY_(tmbsnprintf)(buf, sizeof(buf), "HTML Tidy from https://github.com/w3c/tidy-html5"); #endif for ( node = head->content; node; node = node->next )