We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4b1fe commit 9b99e9eCopy full SHA for 9b99e9e
.github/workflows/bib2readme.py
@@ -48,16 +48,14 @@ def format_bibtex(entry: dict) -> str:
48
return bibtex_str
49
50
def to_string(self) -> str:
51
- entry_str = f"- **{self.title}**\n {self.authors}\n"
+ entry_str = f"- **{self.title}**. {self.authors}."
52
if self.url:
53
- entry_str += f" [Link]({self.url})\n"
+ entry_str += f" [[Link]]({self.url})"
54
entry_str += (
55
- f"<details>\n"
56
- f"<summary>Show BibTeX</summary>\n"
57
- f"<pre><code>\n"
58
- f"{self.bibtex}\n"
59
- f"</code></pre>\n"
60
- f"</details>\n"
+ f" <details>"
+ f" <summary>Show BibTeX</summary>\n"
+ f" <pre><code>{self.bibtex}</code></pre>\n"
+ f" </details>\n"
61
)
62
entry_str += "\n"
63
return entry_str
0 commit comments