Skip to content

Commit

Permalink
fixing link to atlas and space schema
Browse files Browse the repository at this point in the history
  • Loading branch information
lzehl committed Jul 25, 2023
1 parent 7542081 commit 7ad762a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _build_brain_atlas(self, docpath:str, instance_id:str, schemadir:str):
doc = RstCloth(output_file, line_width=100000)
doc.heading(f"{title}", char="#", overline=True)
doc.newline()
doc.content(f"Related schema specification: `{title} <{schema_link}>`")
doc.content(f"Related schema specification: `{title} <{schema_link}>`_")
doc.newline()
doc.directive(name="admonition", arg="metadata sheet")
doc.newline()
Expand Down Expand Up @@ -247,7 +247,7 @@ def _build_common_coordinate_space(self, docpath:str, instance_id:str, schemadir
doc = RstCloth(output_file, line_width=100000)
doc.heading(f"{title}", char="#", overline=True)
doc.newline()
doc.content(f"Related schema specification: `{title} <{schema_link}>`")
doc.content(f"Related schema specification: `{title} <{schema_link}>`_")
doc.newline()
doc.directive(name="admonition", arg="metadata sheet")
doc.newline()
Expand Down

0 comments on commit 7ad762a

Please sign in to comment.