Skip to content

Commit 0d5b276

Browse files
committed
Parse run highlights
1 parent b5e5ea1 commit 0d5b276

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.8.0
2+
3+
* Support parsing of run highlights.
4+
15
# 1.7.1
26

37
* Switch the precedence of numbering properties in paragraph properties and the

mammoth/documents.py

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class Run(HasChildren):
5353
vertical_alignment = cobble.field()
5454
font = cobble.field()
5555
font_size = cobble.field()
56+
highlight = cobble.field()
5657

5758
@cobble.data
5859
class Text(Element):
@@ -128,6 +129,7 @@ def run(
128129
vertical_alignment=None,
129130
font=None,
130131
font_size=None,
132+
highlight=None,
131133
):
132134
if vertical_alignment is None:
133135
vertical_alignment = VerticalAlignment.baseline
@@ -144,6 +146,7 @@ def run(
144146
vertical_alignment=vertical_alignment,
145147
font=font,
146148
font_size=font_size,
149+
highlight=highlight,
147150
)
148151

149152
class VerticalAlignment(object):

mammoth/docx/body_xml.py

+2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def run(element):
102102
is_strikethrough = read_boolean_element(properties.find_child("w:strike"))
103103
is_all_caps = read_boolean_element(properties.find_child("w:caps"))
104104
is_small_caps = read_boolean_element(properties.find_child("w:smallCaps"))
105+
highlight = properties.find_child_or_null("w:highlight").attributes.get("w:val")
105106

106107
def add_complex_field_hyperlink(children):
107108
hyperlink_kwargs = current_hyperlink_kwargs()
@@ -126,6 +127,7 @@ def add_complex_field_hyperlink(children):
126127
vertical_alignment=vertical_alignment,
127128
font=font,
128129
font_size=font_size,
130+
highlight=highlight,
129131
))
130132

131133
def _read_run_style(properties):

tests/docx/body_xml_tests.py

+9
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,15 @@ def test_run_with_invalid_w_sz_has_none_font_size(self):
405405
run = self._read_run_with_properties([font_size_xml])
406406
assert_equal(None, run.font_size)
407407

408+
def test_run_has_no_highlight_by_default(self):
409+
run = self._read_run_with_properties([])
410+
assert_equal(None, run.highlight)
411+
412+
def test_run_has_highlight_read_from_properties(self):
413+
highlight_xml = xml_element("w:highlight", {"w:val": "yellow"})
414+
run = self._read_run_with_properties([highlight_xml])
415+
assert_equal("yellow", run.highlight)
416+
408417
def _read_run_with_properties(self, properties, styles=None):
409418
properties_xml = xml_element("w:rPr", {}, properties)
410419
run_xml = xml_element("w:r", {}, [properties_xml])

0 commit comments

Comments
 (0)