mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 00:21:13 +00:00
Apply doc fixes retroactively
This commit is contained in:
parent
391f922acc
commit
13d07c6a3d
@ -183,6 +183,12 @@ def update_site(env):
|
|||||||
with rewrite(index) as b:
|
with rewrite(index) as b:
|
||||||
b.data = b.data.replace(
|
b.data = b.data.replace(
|
||||||
'doc/latest/index.html#format-string-syntax', 'syntax.html')
|
'doc/latest/index.html#format-string-syntax', 'syntax.html')
|
||||||
|
# Fix issues in syntax.rst.
|
||||||
|
index = os.path.join(target_doc_dir, 'syntax.rst')
|
||||||
|
with rewrite(index) as b:
|
||||||
|
b.data = b.data.replace(
|
||||||
|
'..productionlist:: sf\n', '.. productionlist:: sf\n ')
|
||||||
|
b.data = b.data.replace('Examples:\n', 'Examples::\n')
|
||||||
# Build the docs.
|
# Build the docs.
|
||||||
html_dir = os.path.join(env.build_dir, 'html')
|
html_dir = os.path.join(env.build_dir, 'html')
|
||||||
if os.path.exists(html_dir):
|
if os.path.exists(html_dir):
|
||||||
|
Loading…
Reference in New Issue
Block a user