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
Fix handling of EPUBSTYLE
In org mode 9.0:
(org-split-string "") -> '()
In org mode 9.1+:
(org-split-string "") -> '("")
So we switch to split-string, which does what we want.
Fixesofosos#15