Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 327 Bytes

head-type.md

File metadata and controls

19 lines (17 loc) · 327 Bytes

head-type

Remove attribute @type from <head/> elements. N.B.: The @type attribute is not invalid on <head/> elements.

Example

Before transformation:

<div>
  <head type="something">Header</head>
  <p/>
</div>

After transformation:

<div>
  <head>Header</head>
  <p/>
</div>