chore: Refactor markdown format string handling

This commit is contained in:
Marty Oehme 2024-06-12 11:05:13 +02:00
parent c21ab4a76c
commit d087c366c3
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 5 additions and 6 deletions

View file

@ -88,10 +88,11 @@ def main(
git: bool,
force: bool,
) -> None:
"""Extract annotations from any pdf document.
"""Extract annotations from any documents.
The extract plugin allows manual or automatic extraction of all annotations
contained in the pdf documents belonging to entries of the papis library.
contained in the documents belonging to entries of the papis library,
primarily targeting PDF documents currently.
It can write those changes to stdout or directly create and update notes
for papis documents.

View file

@ -23,15 +23,13 @@ def format_markdown(
heading = f"{document.get('title', '')} - {document.get('author', '')}"
if headings == "atx":
output = f"# {heading}\n\n"
output += f"# {heading}\n\n"
elif headings == "setext":
title_decoration = (
f"{'=' * len(document.get('title', ''))} "
f"{'-' * len(document.get('author', ''))}"
)
output = f"{title_decoration}\n{heading}\n{title_decoration}\n\n"
else:
output = ""
output += f"{title_decoration}\n{heading}\n{title_decoration}\n\n"
for a in annotations:
output += a.format(template)