102 lines
3.1 KiB
Python
102 lines
3.1 KiB
Python
from .styles.parser import read_style_mapping
|
|
from . import lists, results
|
|
|
|
|
|
def read_options(options):
|
|
custom_style_map_text = options.pop("style_map", "") or ""
|
|
embedded_style_map_text = options.pop("embedded_style_map", "") or ""
|
|
include_default_style_map = options.pop("include_default_style_map", True)
|
|
|
|
read_style_map_result = results.combine([
|
|
_read_style_map(custom_style_map_text),
|
|
_read_style_map(embedded_style_map_text),
|
|
])
|
|
|
|
custom_style_map, embedded_style_map = read_style_map_result.value
|
|
style_map = custom_style_map + embedded_style_map
|
|
|
|
if include_default_style_map:
|
|
style_map += _default_style_map
|
|
|
|
options["ignore_empty_paragraphs"] = options.get("ignore_empty_paragraphs", True)
|
|
options["style_map"] = style_map
|
|
return read_style_map_result.map(lambda _: options)
|
|
|
|
|
|
def _read_style_map(style_text):
|
|
lines = filter(None, map(_get_line, style_text.split("\n")))
|
|
return results.combine(lists.map(read_style_mapping, lines)) \
|
|
.map(lambda style_mappings: lists.filter(None, style_mappings))
|
|
|
|
|
|
def _get_line(line):
|
|
line = line.strip()
|
|
if line.startswith("#"):
|
|
return None
|
|
else:
|
|
return line
|
|
|
|
|
|
_default_style_map_result = _read_style_map("""
|
|
p.Heading1 => h1:fresh
|
|
p.Heading2 => h2:fresh
|
|
p.Heading3 => h3:fresh
|
|
p.Heading4 => h4:fresh
|
|
p.Heading5 => h5:fresh
|
|
p.Heading6 => h6:fresh
|
|
p[style-name='Heading 1'] => h1:fresh
|
|
p[style-name='Heading 2'] => h2:fresh
|
|
p[style-name='Heading 3'] => h3:fresh
|
|
p[style-name='Heading 4'] => h4:fresh
|
|
p[style-name='Heading 5'] => h5:fresh
|
|
p[style-name='Heading 6'] => h6:fresh
|
|
p[style-name='heading 1'] => h1:fresh
|
|
p[style-name='heading 2'] => h2:fresh
|
|
p[style-name='heading 3'] => h3:fresh
|
|
p[style-name='heading 4'] => h4:fresh
|
|
p[style-name='heading 5'] => h5:fresh
|
|
p[style-name='heading 6'] => h6:fresh
|
|
|
|
# Apple Pages
|
|
p.Heading => h1:fresh
|
|
p[style-name='Heading'] => h1:fresh
|
|
|
|
r[style-name='Strong'] => strong
|
|
|
|
p[style-name='footnote text'] => p:fresh
|
|
r[style-name='footnote reference'] =>
|
|
p[style-name='endnote text'] => p:fresh
|
|
r[style-name='endnote reference'] =>
|
|
p[style-name='annotation text'] => p:fresh
|
|
r[style-name='annotation reference'] =>
|
|
|
|
# LibreOffice
|
|
p[style-name='Footnote'] => p:fresh
|
|
r[style-name='Footnote anchor'] =>
|
|
p[style-name='Endnote'] => p:fresh
|
|
r[style-name='Endnote anchor'] =>
|
|
|
|
p:unordered-list(1) => ul > li:fresh
|
|
p:unordered-list(2) => ul|ol > li > ul > li:fresh
|
|
p:unordered-list(3) => ul|ol > li > ul|ol > li > ul > li:fresh
|
|
p:unordered-list(4) => ul|ol > li > ul|ol > li > ul|ol > li > ul > li:fresh
|
|
p:unordered-list(5) => ul|ol > li > ul|ol > li > ul|ol > li > ul|ol > li > ul > li:fresh
|
|
p:ordered-list(1) => ol > li:fresh
|
|
p:ordered-list(2) => ul|ol > li > ol > li:fresh
|
|
p:ordered-list(3) => ul|ol > li > ul|ol > li > ol > li:fresh
|
|
p:ordered-list(4) => ul|ol > li > ul|ol > li > ul|ol > li > ol > li:fresh
|
|
p:ordered-list(5) => ul|ol > li > ul|ol > li > ul|ol > li > ul|ol > li > ol > li:fresh
|
|
|
|
r[style-name='Hyperlink'] =>
|
|
|
|
p[style-name='Normal'] => p:fresh
|
|
|
|
# Apple Pages
|
|
p.Body => p:fresh
|
|
p[style-name='Body'] => p:fresh
|
|
""")
|
|
|
|
|
|
assert not _default_style_map_result.messages
|
|
_default_style_map = _default_style_map_result.value
|