diff --git a/console/tidy.c b/console/tidy.c index ea631be..48af763 100644 --- a/console/tidy.c +++ b/console/tidy.c @@ -437,7 +437,8 @@ static void help( ctmbstr prog ) printf( "Utility to clean up and pretty print HTML/XHTML/XML\n"); printf( "\n"); - printf( "This is an HTML5-aware fork of HTML Tidy, dated %s\n", tidyReleaseDate() ); + printf( "This is an HTML5-aware experimental fork of HTML Tidy.\n"); + printf( "%s\n", tidyReleaseDate() ); printf( "\n"); #ifdef PLATFORM_NAME @@ -458,28 +459,23 @@ static void help( ctmbstr prog ) printf( "Single letter options apart from -f may be combined\n"); printf( "as in: tidy -f errs.txt -imu foo.html\n"); printf( "\n"); - printf( "For the source of this HTML5 fork see https://github.com/geoffmcl/tidy-fork\n" ); - printf( "This fork started life as a clone of http://w3c.github.com/tidy-html5/\n" ); + printf( "For more information on this HTML5-aware experimental fork of Tidy,\n" ); + printf( "see http://w3c.github.com/tidy-html5/\n" ); printf( "\n"); printf( "For more information on HTML, see the following:\n" ); printf( "\n"); - printf( " HTML5: Introduction and tutorial (follow the chapters) from\n"); - printf( " http://www.w3schools.com/html/html5_intro.asp\n"); - printf( "\n"); printf( " HTML: Edition for Web Authors (the latest HTML specification)\n"); printf( " http://dev.w3.org/html5/spec-author-view\n" ); printf( "\n"); - /* ============================== - appears to be an INVALID link printf( " HTML: The Markup Language (an HTML language reference)\n" ); printf( " http://dev.w3.org/html5/markup/\n" ); printf( "\n"); - ============================== */ - printf( "File bug reports at https://github.com/geoffmcl/tidy-fork/issues/\n" ); - printf( "and/or send questions and comments to tidy _at_ geoffair _dot_ info\n" ); + printf( "File bug reports at https://github.com/w3c/tidy-html5/issues/\n" ); + printf( "or send questions and comments to html-tidy@w3.org\n" ); printf( "\n"); - printf( "Validate your HTML documents using the W3C Markup Validation Service:\n" ); - printf( " http://validator.w3.org/ or http://validator.w3.org/nu/" ); + printf( "Validate your HTML documents using the W3C Nu Markup Validator:\n" ); + printf( "\n"); + printf( " http://validator.w3.org/nu/" ); printf( "\n"); } @@ -947,10 +943,10 @@ static void optionvalues( TidyDoc tdoc ) static void version( void ) { #ifdef PLATFORM_NAME - printf( "HTML Tidy for HTML5 for %s %s\n", + printf( "HTML Tidy for HTML5 (experimental) for %s %s\n", PLATFORM_NAME, tidyReleaseDate() ); #else - printf( "HTML Tidy for HTML5 %s\n", tidyReleaseDate() ); + printf( "HTML Tidy for HTML5 (experimental) %s\n", tidyReleaseDate() ); #endif }