We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation, for mergeAttrs, it says that "This option is ignored if ignoreAttrs is false."
mergeAttrs
However, when I set ignoreAttrs: false
ignoreAttrs: false
This
<link href="google.com"/> <link href="yahoo.com"/>
Becomes
// mergeAttrs: false {link: [{ '$': { href: 'google.com' } },{ '$': { href: 'yahoo.com' } }]}
// mergeAttrs: true {link: [ { href: 'google.com' }, { href: 'yahoo.com' }]}
Personally, this works out well for me because that's what I want. But the documentation is misleading.
It would be even better if it did this
// mergeAttrs: true {link: { href: ['google.com', 'yahoo.com'] }}
May be related to: #367
The text was updated successfully, but these errors were encountered:
The documentation is wrong. It should read:
This option is ignored if ignoreAttrs is true.
ignoreAttrs
true
Sorry, something went wrong.
0f0a298
Fixed, thanks for pointing it out.
No branches or pull requests
In the documentation, for
mergeAttrs
, it says that "This option is ignored if ignoreAttrs is false."However, when I set
ignoreAttrs: false
This
Becomes
Personally, this works out well for me because that's what I want. But the documentation is misleading.
It would be even better if it did this
May be related to: #367
The text was updated successfully, but these errors were encountered: