Michael Fruth
Michael Fruth
A new option `align_multiline_values` is added to BibTexWriter to enable whether text of multiline values should be aligned on top of each other. Indentation also considered `_max_field_width`. Current behaviour: BibTeX...
When using `align_values`, the minimum `_max_field_width` is always 9 as `ENTRYPOINT` (9 chars) is in the list of `entries`: https://github.com/sciunto-org/python-bibtexparser/blob/006f463a8601dc8065f02f3199210c70f24ac4f9/bibtexparser/bwriter.py#L108 Therefore, this tests works fine: ``` def test_align2(self): bib_database =...
Fixes #315 Aligns all values according to a given length by padding with single spaces. If align_values is true, the maximum number of characters used in any field name is...
Setup build infrastructure: - Use pipenv for development (see https://github.com/streamlit/streamlit/tree/develop/lib as reference) - Use MakeFile to format, sort, lint, etc.. - Create pyproject.toml
Hello, I noticed a performance problem as soon as the schema contains the following structure: ` ... "anyOf": [ {"enum": ["aa", "bb", "cc"]}, {"pattern": "pattern1"}, {"pattern": "pattern2"}, {"pattern": "pattern3"}, ......
Hello, There is a problem when using escaped characters in a pattern. E.g.: ` { "type": "string", "anyOf": [ { "pattern": "^a\\-b$" }, { "pattern": "^b\\-c$" } ] } `...