File tree 4 files changed +18
-0
lines changed
4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ # 1.8.0
2
+
3
+ * Support parsing of run highlights.
4
+
1
5
# 1.7.1
2
6
3
7
* Switch the precedence of numbering properties in paragraph properties and the
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ class Run(HasChildren):
53
53
vertical_alignment = cobble .field ()
54
54
font = cobble .field ()
55
55
font_size = cobble .field ()
56
+ highlight = cobble .field ()
56
57
57
58
@cobble .data
58
59
class Text (Element ):
@@ -128,6 +129,7 @@ def run(
128
129
vertical_alignment = None ,
129
130
font = None ,
130
131
font_size = None ,
132
+ highlight = None ,
131
133
):
132
134
if vertical_alignment is None :
133
135
vertical_alignment = VerticalAlignment .baseline
@@ -144,6 +146,7 @@ def run(
144
146
vertical_alignment = vertical_alignment ,
145
147
font = font ,
146
148
font_size = font_size ,
149
+ highlight = highlight ,
147
150
)
148
151
149
152
class VerticalAlignment (object ):
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ def run(element):
102
102
is_strikethrough = read_boolean_element (properties .find_child ("w:strike" ))
103
103
is_all_caps = read_boolean_element (properties .find_child ("w:caps" ))
104
104
is_small_caps = read_boolean_element (properties .find_child ("w:smallCaps" ))
105
+ highlight = properties .find_child_or_null ("w:highlight" ).attributes .get ("w:val" )
105
106
106
107
def add_complex_field_hyperlink (children ):
107
108
hyperlink_kwargs = current_hyperlink_kwargs ()
@@ -126,6 +127,7 @@ def add_complex_field_hyperlink(children):
126
127
vertical_alignment = vertical_alignment ,
127
128
font = font ,
128
129
font_size = font_size ,
130
+ highlight = highlight ,
129
131
))
130
132
131
133
def _read_run_style (properties ):
Original file line number Diff line number Diff line change @@ -405,6 +405,15 @@ def test_run_with_invalid_w_sz_has_none_font_size(self):
405
405
run = self ._read_run_with_properties ([font_size_xml ])
406
406
assert_equal (None , run .font_size )
407
407
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
+
408
417
def _read_run_with_properties (self , properties , styles = None ):
409
418
properties_xml = xml_element ("w:rPr" , {}, properties )
410
419
run_xml = xml_element ("w:r" , {}, [properties_xml ])
You can’t perform that action at this time.
0 commit comments