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
Using the experimental feature General HTML Support, inspector fails providing details on the attributes stored from GHS.
In the example given below, the <strong> attribute is configured that it may carry an addition lang attribute:
<strong>
lang
The above source code view is a custom DTD which is a subset of HTML. Thus, in view, it is represented as <strong lang="...">.
<strong lang="...">
The inspector only reveals {attributes:{}} as value.
{attributes:{}}
Similar to that, a custom class attribute is represented in inspector as:
classes:[undefined]
having for example:
<strong class="some-class">
The text was updated successfully, but these errors were encountered:
Merge pull request #151 from ckeditor/i/129
5874d2a
Fix: Improved rendering of GHS attributes in the inspector. Closes #129.
oleq
Successfully merging a pull request may close this issue.
Using the experimental feature General HTML Support, inspector fails providing details on the attributes stored from GHS.
In the example given below, the
<strong>
attribute is configured that it may carry an additionlang
attribute:The above source code view is a custom DTD which is a subset of HTML. Thus, in view, it is represented as
<strong lang="...">
.The inspector only reveals
{attributes:{}}
as value.Similar to that, a custom class attribute is represented in inspector as:
having for example:
The text was updated successfully, but these errors were encountered: