Skip to content

Commit

Permalink
small update
Browse files Browse the repository at this point in the history
  • Loading branch information
lzehl committed Jul 16, 2023
1 parent b8506d4 commit eaf5586
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pipeline/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def _build_atlas_terminology(self, data:Dict) -> List:
def build_bullet_list(tree, indent=0):
bullet_list = []
for item in tree:
bullet_list.append(f"{' '*(indent*3)}* {item['name']}")
bullet_list.append(f"{' '*(indent)}* {item['name']}")
if 'children' in item:
subtree = build_bullet_list(item['children'], indent + 1)
bullet_list.extend(subtree)
Expand Down
8 changes: 4 additions & 4 deletions pipeline/toctree.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def create_toc_tree_page(version:str, relative_path:List[str]):
create_toc_tree_page(version, new_relative_path)

if heading == "Libraries":
doc.note(content="The instances of these libraries are continuously extended and optimized. For "
"requesting missing instances to be registered or for editions of existing instances "
"please raise an issue on `openMINDS_instances "
"<https://github.com/openMetadataInitiative/openMINDS_documentation/issues>`_")
doc.note(content="The instances of these libraries are continuously extended and optimized. You can "
"request the registration of new instances or corrections\/extensions of existing "
"instances by raising an issue on `openMINDS_instances "
"<https://github.com/openMetadataInitiative/openMINDS_documentation/issues>`_.")

for link in links:
doc.content(link)
Expand Down

0 comments on commit eaf5586

Please sign in to comment.