-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Put counter board output into separate tabs. #233
base: main
Are you sure you want to change the base?
Conversation
Fixes chipsalliance#164 Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
This is currently failing with;
|
I believe this is being caused by https://github.com/SymbiFlow/symbiflow-examples/blob/master/docs/collect_readmes.py which was added by @rw1nkler and modified by @fkokosinski
|
The issue seems to be the line @ https://github.com/SymbiFlow/symbiflow-examples/blob/master/docs/collect_readmes.py#L205 which calls def parse(app: Sphinx, text: str, docname: str = 'index') -> nodes.document:
"""Parse a string as reStructuredText with Sphinx application."""
try:
app.env.temp_data['docname'] = docname
reader = SphinxStandaloneReader()
reader.setup(app)
parser = RSTParser()
parser.set_application(app)
with sphinx_domains(app.env):
return publish_doctree(text, path.join(app.srcdir, docname + '.rst'),
reader=reader,
parser=parser,
settings_overrides={'env': app.env,
'gettext_compact': True})
finally:
app.env.temp_data.pop('docname', None)
|
Fixes #164
Signed-off-by: Tim 'mithro' Ansell tansell@google.com