Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
indent using 4 spaces as per md standard. Fixes #392
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Mar 5, 2021
1 parent 30ec345 commit 3622840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biolinkml/generators/markdowngen.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def para(txt: str) -> None:

@staticmethod
def bullet(txt: str, level=0) -> None:
print(f'{" " * level} * {txt}')
print(f'{" " * level} * {txt}')

def frontmatter(self, thingtype: str, layout='default') -> None:
self.header(1, thingtype)
Expand Down

0 comments on commit 3622840

Please sign in to comment.