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
If the value of an attribute includes equal signs, then this attribute is ignored.
One example of the use case is setting data-background-iframe to a URL with a query string:
data-background-iframe
<!-- .slide: data-background-iframe="https://www.youtube.com/embed/XXXX?rel=0" data-background-interactive -->
The reason of this seems to be in https://github.com/hakimel/reveal.js/blob/master/plugin/markdown/markdown.js#L285 , which requires the value of an attribute doesn't include " or =.
"
=
The text was updated successfully, but these errors were encountered:
This prevents us from embedding published Google Drive documents as the URLs include = signs.
Sorry, something went wrong.
No branches or pull requests
If the value of an attribute includes equal signs, then this attribute is ignored.
One example of the use case is setting
data-background-iframe
to a URL with a query string:<!-- .slide: data-background-iframe="https://www.youtube.com/embed/XXXX?rel=0" data-background-interactive -->
The reason of this seems to be in https://github.com/hakimel/reveal.js/blob/master/plugin/markdown/markdown.js#L285 , which requires the value of an attribute doesn't include
"
or=
.The text was updated successfully, but these errors were encountered: