Skip to content

bib.bibtexparser.middlewares_str_to_library

Classes

MiddlewaresStrToLibrary

MiddlewaresStrToLibrary(options)

Middlewares for converting a string to a library.

Parameters:

Name Type Description Default
options dict

Options for the middlewares.

required

Attributes:

Name Type Description
is_display_implicit_comments bool

Display implicit comments. Default is True.

Source code in pybibtexer/bib/bibtexparser/middlewares_str_to_library.py
def __init__(self, options: dict[str, Any]):
    self.is_display_implicit_comments = options.get("is_display_implicit_comments", True)