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
Configuration settings for html_static_path are overwritten in builders.py:
# Hand over builder configs to html builder.setattr(self.config, "html_static_path", self.config.revealjs_static_path)
Thus any static files defined either in conf.py or by other extensions are ignored and essentially do not get copied to the output.
Could you please change it to something conceptually like this, preserving existing values:
# Hand over builder configs to html builder.hsp=getattr(self.config, "html_static_path")
hsp=hsp+self.config.revealjs_static_pathifhspelseself.config.revealjs_static_pathsetattr(self.config, "html_static_path", hsp)
Regards,
The text was updated successfully, but these errors were encountered:
This was implemented for rightly work on old version.
It may be able to delete in current version, but it is not certain by not remember why implement it.
I will check that it until v3.x releases (probably delete it).
Configuration settings for
html_static_path
are overwritten inbuilders.py
:Thus any static files defined either in conf.py or by other extensions are ignored and essentially do not get copied to the output.
Could you please change it to something conceptually like this, preserving existing values:
Regards,
The text was updated successfully, but these errors were encountered: