Skip to content

Commit

Permalink
update script
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinschmitt committed Oct 13, 2024
1 parent cac29e8 commit d3f5ff6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bib2readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ def to_string(self) -> str:
if self.url:
entry_str += f" [Link]({self.url})\n"
entry_str += (
f" <details>\n"
f" <summary>Show BibTeX</summary>\n"
f" <pre><code>\n"
f"<details>\n"
f"<summary>Show BibTeX</summary>\n"
f"<pre>```\n"
f"{self.bibtex}\n"
f" </code></pre>\n"
f" </details>\n"
f"```</pre>\n"
f"</details>\n"
)
entry_str += "\n"
return entry_str
Expand Down

0 comments on commit d3f5ff6

Please sign in to comment.