Skip to content

Commit

Permalink
doc: add missing newline between generated synopsis and description h…
Browse files Browse the repository at this point in the history
…eading (OSGeo#5330)

doc: add missing newline between generated synopsis and description header
  • Loading branch information
petrasovaa authored Mar 10, 2025
1 parent f178edc commit 735a27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/mkmarkdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def merge_md_files(md1, md2, content_modifier1, content_modifier2):
combined_yaml = "\n".join(yaml_items)

# Attach the rest of the document.
return ["---\n", combined_yaml, "\n---\n\n", content1, "\n", content2, "\n"]
return ["---\n", combined_yaml, "\n---\n\n", content1, "\n\n", content2, "\n"]


def main():
Expand Down

0 comments on commit 735a27c

Please sign in to comment.