New Element-based builder API (WiP).
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 31 Aug 2020 13:29:43 +0000 (15:29 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 31 Aug 2020 13:29:43 +0000 (15:29 +0200)
commit0604bdd5f693da9f1c78f9d9fa2276f0c7b6c17b
treefc77a8ceb5d59e37133e15fa8ed53e5e57dd16d9
parentca8319931f449468918067367133ff25f9b19f30
New Element-based builder API (WiP).
66 files changed:
setup.py
src/librarian/builders/__init__.py [new file with mode: 0644]
src/librarian/builders/html.py [new file with mode: 0644]
src/librarian/builders/sanitize.py [new file with mode: 0644]
src/librarian/builders/txt.py [new file with mode: 0644]
src/librarian/command_line.py [new file with mode: 0644]
src/librarian/dcparser.py
src/librarian/document.py [new file with mode: 0644]
src/librarian/elements/__init__.py [new file with mode: 0644]
src/librarian/elements/base.py [new file with mode: 0644]
src/librarian/elements/blocks/__init__.py [new file with mode: 0644]
src/librarian/elements/blocks/dlugi_cytat.py [new file with mode: 0644]
src/librarian/elements/blocks/nota.py [new file with mode: 0644]
src/librarian/elements/blocks/poezja_cyt.py [new file with mode: 0644]
src/librarian/elements/comments/__init__.py [new file with mode: 0644]
src/librarian/elements/comments/abstrakt.py [new file with mode: 0644]
src/librarian/elements/comments/uwaga.py [new file with mode: 0644]
src/librarian/elements/drama/__init__.py [new file with mode: 0644]
src/librarian/elements/drama/didask_tekst.py [new file with mode: 0644]
src/librarian/elements/drama/didaskalia.py [new file with mode: 0644]
src/librarian/elements/drama/kwestia.py [new file with mode: 0644]
src/librarian/elements/drama/lista_osob.py [new file with mode: 0644]
src/librarian/elements/drama/lista_osoba.py [new file with mode: 0644]
src/librarian/elements/drama/naglowek_listy.py [new file with mode: 0644]
src/librarian/elements/drama/naglowek_osoba.py [new file with mode: 0644]
src/librarian/elements/drama/osoba.py [new file with mode: 0644]
src/librarian/elements/figures/__init__.py [new file with mode: 0644]
src/librarian/elements/figures/ilustr.py [new file with mode: 0644]
src/librarian/elements/footnotes/__init__.py [new file with mode: 0644]
src/librarian/elements/front/__init__.py [new file with mode: 0644]
src/librarian/elements/front/autor_utworu.py [new file with mode: 0644]
src/librarian/elements/front/base.py [new file with mode: 0644]
src/librarian/elements/front/dzielo_nadrzedne.py [new file with mode: 0644]
src/librarian/elements/front/motto.py [new file with mode: 0644]
src/librarian/elements/front/motto_podpis.py [new file with mode: 0644]
src/librarian/elements/front/nazwa_utworu.py [new file with mode: 0644]
src/librarian/elements/front/podtytul.py [new file with mode: 0644]
src/librarian/elements/headers/__init__.py [new file with mode: 0644]
src/librarian/elements/headers/naglowek_czesc.py [new file with mode: 0644]
src/librarian/elements/headers/naglowek_podrozdzial.py [new file with mode: 0644]
src/librarian/elements/headers/naglowek_rozdzial.py [new file with mode: 0644]
src/librarian/elements/masters/__init__.py [new file with mode: 0644]
src/librarian/elements/paragraphs/__init__.py [new file with mode: 0644]
src/librarian/elements/paragraphs/akap.py [new file with mode: 0644]
src/librarian/elements/poetry/__init__.py [new file with mode: 0644]
src/librarian/elements/poetry/strofa.py [new file with mode: 0644]
src/librarian/elements/poetry/wers.py [new file with mode: 0644]
src/librarian/elements/poetry/wers_cd.py [new file with mode: 0644]
src/librarian/elements/poetry/wers_wciety.py [new file with mode: 0644]
src/librarian/elements/poetry/zastepnik_wersu.py [new file with mode: 0644]
src/librarian/elements/root/__init__.py [new file with mode: 0644]
src/librarian/elements/separators/__init__.py [new file with mode: 0644]
src/librarian/elements/separators/sekcja_asterysk.py [new file with mode: 0644]
src/librarian/elements/separators/sekcja_swiatlo.py [new file with mode: 0644]
src/librarian/elements/separators/separator_linia.py [new file with mode: 0644]
src/librarian/elements/styles/__init__.py [new file with mode: 0644]
src/librarian/elements/styles/slowo_obce.py [new file with mode: 0644]
src/librarian/elements/styles/tytul_dziela.py [new file with mode: 0644]
src/librarian/elements/styles/wyroznienie.py [new file with mode: 0644]
src/librarian/elements/themes/__init__.py [new file with mode: 0644]
src/librarian/elements/themes/begin.py [new file with mode: 0644]
src/librarian/elements/themes/end.py [new file with mode: 0644]
src/librarian/elements/themes/motyw.py [new file with mode: 0644]
src/librarian/parser.py
tests/test_text.py
tox.ini