Skip to content

Commit

Permalink
Fix for sphinx 7.3+: change rebuild argument in option to empty string (
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspcamargo authored Apr 22, 2024
1 parent aee8d25 commit bc7791b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sphinxnotes/isso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ def on_html_page_context(app:Sphinx, pagename:str, templatename:str, context,


def setup(app:Sphinx):
app.add_config_value('isso_url', None, {})
app.add_config_value('isso_url', None, '')
for cfg in CONFIG_ITEMS:
app.add_config_value(cfg, None, {})
app.add_config_value(cfg, None, '')
app.add_directive('isso', IssoDirective)
app.add_node(IssoNode, html=(IssoNode.visit, IssoNode.depart))
app.connect('html-page-context', on_html_page_context)
Expand Down

0 comments on commit bc7791b

Please sign in to comment.