Merge pull request #731 from htacg/issue-726
Issue 726 upper case anchors
This commit is contained in:
commit
75dd3a03f2
|
@ -997,13 +997,16 @@ void TY_(RemoveAnchorByNode)( TidyDocImpl* doc, ctmbstr name, Node *node )
|
|||
FreeAnchor( doc, delme );
|
||||
}
|
||||
|
||||
/* initialize new anchor */
|
||||
/* initialize new anchor
|
||||
Is. #726 & #185 - HTML5 is case-sensitive
|
||||
*/
|
||||
static Anchor* NewAnchor( TidyDocImpl* doc, ctmbstr name, Node* node )
|
||||
{
|
||||
Anchor *a = (Anchor*) TidyDocAlloc( doc, sizeof(Anchor) );
|
||||
|
||||
a->name = TY_(tmbstrdup)( doc->allocator, name );
|
||||
a->name = TY_(tmbstrtolower)(a->name);
|
||||
if (!TY_(IsHTML5Mode)(doc)) /* Is. #726 - if NOT HTML5, to lowercase */
|
||||
a->name = TY_(tmbstrtolower)(a->name);
|
||||
a->node = node;
|
||||
a->next = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue