Change allowed values for custom-tags, and make y equal to inline.
This commit is contained in:
parent
66de84bc2b
commit
8273491e16
|
@ -1277,32 +1277,27 @@ Bool ParseUseCustomTags( TidyDocImpl* doc, const TidyOptionImpl* entry )
|
||||||
{
|
{
|
||||||
case 'n':
|
case 'n':
|
||||||
case 'N':
|
case 'N':
|
||||||
case '0':
|
|
||||||
value = TidyCustomNo;
|
value = TidyCustomNo;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'y':
|
|
||||||
case 'Y':
|
|
||||||
case 'b':
|
case 'b':
|
||||||
case '1':
|
|
||||||
value = TidyCustomBlocklevel;
|
value = TidyCustomBlocklevel;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'e':
|
case 'e':
|
||||||
case 'E':
|
case 'E':
|
||||||
case '2':
|
|
||||||
value = TidyCustomEmpty;
|
value = TidyCustomEmpty;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'y':
|
||||||
|
case 'Y':
|
||||||
case 'i':
|
case 'i':
|
||||||
case 'I':
|
case 'I':
|
||||||
case '3':
|
|
||||||
value = TidyCustomInline;
|
value = TidyCustomInline;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'p':
|
case 'p':
|
||||||
case 'P':
|
case 'P':
|
||||||
case '4':
|
|
||||||
value = TidyCustomPre;
|
value = TidyCustomPre;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue