From aec686b1a96f912445c8614363682b3a2e31cea6 Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Thu, 26 Oct 2017 14:24:35 -0400 Subject: [PATCH] Add a true "default" to TidyCSSPrefix so that it will be shown in documentation. --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 5cdcaa8..171da5e 100644 --- a/src/config.c +++ b/src/config.c @@ -178,7 +178,7 @@ static const TidyOptionImpl option_defs[] = { TidyBreakBeforeBR, PP, "break-before-br", BL, no, ParsePickList, &boolPicks }, { TidyCharEncoding, CE, "char-encoding", IN, UTF8, ParseCharEnc, &charEncPicks }, { TidyCoerceEndTags, MR, "coerce-endtags", BL, yes, ParsePickList, &boolPicks }, - { TidyCSSPrefix, MR, "css-prefix", ST, 0, ParseCSS1Selector, NULL }, + { TidyCSSPrefix, MR, "css-prefix", ST, 0, ParseCSS1Selector, NULL, "c" }, { TidyCustomTags, IR, "new-custom-tags", ST, 0, ParseTagNames, NULL }, /* 20170309 - Issue #119 */ { TidyDecorateInferredUL, MX, "decorate-inferred-ul", BL, no, ParsePickList, &boolPicks }, { TidyDoctype, DT, "doctype", ST, 0, ParseDocType, &doctypePicks },