We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1874558 commit 2ee7752Copy full SHA for 2ee7752
src/Text/Pandoc/Readers/Docx/Reducible.hs
@@ -53,6 +53,7 @@ instance Modifiable Inlines where
53
(Strikeout _) -> Modifier strikeout
54
(Superscript _) -> Modifier superscript
55
(Subscript _) -> Modifier subscript
56
+ (Link attr _ tgt) -> Modifier $ linkWith attr (fst tgt) (snd tgt)
57
(Span attr _) -> AttrModifier spanWith attr
58
_ -> NullModifier
59
@@ -65,6 +66,7 @@ instance Modifiable Inlines where
65
66
(Strikeout lst) -> fromList lst
67
(Superscript lst) -> fromList lst
68
(Subscript lst) -> fromList lst
69
+ (Link _ lst _) -> fromList lst
70
(Span _ lst) -> fromList lst
71
_ -> ils
72
0 commit comments