We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76dba73 commit 32d82aaCopy full SHA for 32d82aa
sphinx_multiversion/main.py
@@ -274,6 +274,7 @@ def main(argv=None):
274
"name": gitref.name,
275
"version": current_config.version,
276
"release": current_config.release,
277
+ "rst_prolog": current_config.rst_prolog,
278
"is_released": bool(
279
re.match(config.smv_released_pattern, gitref.refname)
280
),
sphinx_multiversion/sphinx.py
@@ -175,6 +175,7 @@ def config_inited(app, config):
175
old_config.init_values()
176
config.version = data["version"]
177
config.release = data["release"]
178
+ config.rst_prolog = data["rst_prolog"]
179
config.today = old_config.today
180
if not config.today:
181
config.today = sphinx_i18n.format_date(
0 commit comments