You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With history=true reloads keep the slide, which is quite nice when you are editing them. But when the id has some unicode character within, reveal rewrites the url removing such characters from the url hash and reloads to the first slide. This is quite nagging when you are writing a slide and want to see the effects of your changes you just made.
When the id is set to some value, is quite pointless to set it to a different one as it won't go anywhere. Html5 allows "any non-space unicode character" as id. If authors use illegal ids on html4 it's on them.
The need comes from the fact that Pandoc generates section id's from titles, and some of them have such unicode characters. I could ask Pandoc the feature of removing such chars from the id, but as i understand the proper fix is on revealjs.
Don't care about the actual content of id. HTML4 cares, but html5 does not. Even, in html4, is pointless manufacturing a new id to target that indeed it is not there. If the id is not legal searching for it will fail and the effect would be the current behavior.
It fixeshakimel#2198. About pandoc generated ids based on unicode titles.
With
history=true
reloads keep the slide, which is quite nice when you are editing them. But when the id has some unicode character within, reveal rewrites the url removing such characters from the url hash and reloads to the first slide. This is quite nagging when you are writing a slide and want to see the effects of your changes you just made.When the id is set to some value, is quite pointless to set it to a different one as it won't go anywhere. Html5 allows "any non-space unicode character" as id. If authors use illegal ids on html4 it's on them.
The need comes from the fact that Pandoc generates section id's from titles, and some of them have such unicode characters. I could ask Pandoc the feature of removing such chars from the id, but as i understand the proper fix is on revealjs.
This is related to #1655.
The text was updated successfully, but these errors were encountered: