Skip to content

Commit

Permalink
fix bibtex capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed May 2, 2024
1 parent 791afca commit fc3235f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion papis/bibtex.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ def exporter(documents: List[papis.document.Document]) -> str:
class Importer(papis.importer.Importer):
"""
Importer that parses BibTeX files or strings.
Here, `uri` can either be a bibtex string, or point to a bibtex file or http/s url
Here, `uri` can either be a BibTeX string, local BibTeX file or a remote URL
(with a HTTP or HTTPS protocol).
"""

def __init__(self, **kwargs: Any) -> None:
Expand Down
4 changes: 2 additions & 2 deletions papis/commands/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
in the document's main folder with a list of citations. You can check out
the ``papis citations`` command for more advanced usage.
- Bibtex can be imported directly as a string, or read from a file or URL.
The following all work:
- BibTeX can be imported directly as a string, or read from a local file or
from a remote URL. The following all work:
.. code:: sh
Expand Down

0 comments on commit fc3235f

Please sign in to comment.