-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
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
Support for table row fragments #493
Comments
Interesting idea... we might need to introduce an attribute to control if we want to step per line or not. Should we also support per column? and per row per column? |
I did a small experiment where I took the implementation from lists and applied it to the table's rows via an option I found this open issue hakimel/reveal.js#2191. Otherwise the I wouldn't want to support stepping per row per column. That would lead to some really busy slides. Although it would most likely be simpler than stepping only per column. |
Currently the
step
option on a table is translated into the classfragment
on the resulting HTML table. This differs from the translation for ordered and unordered lists where thestep
option leads to the classfragment
being applied to the list items instead of the list itself.I would like to have a possibility to apply the the
fragment
class to the<tr>
instead of the<table>
. Which should be possible if I didn't miss any specifics.For backwards compatibility reasons this most likely should be accomplished via a new option instead of changing the
step
option.The text was updated successfully, but these errors were encountered: