from lxml import etree
from . import (blocks, comments, drama, figures, footnotes, front, headers,
- masters, paragraphs, poetry, root, separators, styles, themes)
+ masters, paragraphs, poetry, ref, root, separators, styles, themes,
+ tools, base)
WL_ELEMENTS = {
+ 'snippet': base.Snippet,
'meta': etree.ElementBase,
'coverClass': etree.ElementBase,
"developmentStage": etree.ElementBase,
"coverBarColor": etree.ElementBase,
"coverBoxPosition": etree.ElementBase,
"coverLogoUrl": etree.ElementBase,
-
+ "contentWarning": etree.ElementBase,
+ "endnotes": etree.ElementBase,
+
"utwor": root.Utwor,
"dramat_wierszowany_l": masters.Master,
"dramat_wierszowany_lp": masters.Master,
"opowiadanie": masters.Master,
"powiesc": masters.Master,
+ "blok": tools.WLElement,
+
"autor_utworu": front.AutorUtworu,
"dzielo_nadrzedne": front.DzieloNadrzedne,
"nazwa_utworu": front.NazwaUtworu,
"wers_akap": poetry.WersAkap,
"zastepnik_wersu": poetry.ZastepnikWersu,
"wers_do_prawej": poetry.WersDoPrawej,
+ "wers_srodek": poetry.WersSrodek,
"pa": footnotes.PA,
"pe": footnotes.PE,
"pr": footnotes.PR,
"pt": footnotes.PT,
+ "ref": ref.Ref,
+
"begin": themes.Begin,
"end": themes.End,
"motyw": themes.Motyw,
"animacja": figures.Animacja,
"ilustr": figures.Ilustr,
+ "numeracja": tools.Numeracja,
+ "rownolegle": tools.Rownolegle,
+ "tab": tools.Tab,
+
+ # Section
+ "wywiad_pyt": blocks.WywiadPyt,
+ "wywiad_odp": blocks.WywiadOdp,
+
# Inline MathML, should really be namespaced.
"mrow": etree.ElementBase,
"mi": etree.ElementBase,