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 f3c3cf7 commit 3fc3749Copy full SHA for 3fc3749
2 files changed
src/Text/Pandoc/Readers/Docx/Parse.hs
@@ -1234,7 +1234,7 @@ elemToExtent el =
1234
(Just w, Just h) -> Just (w, h)
1235
_ -> Nothing
1236
where
1237
- getDim at = filterElementName (\n -> qName n `elem` ["extent", "ext"]) el
+ getDim at = filterElementName (\n -> qName n == "extent") el
1238
>>= findAttr (QName at Nothing Nothing) >>= safeRead
1239
1240
test/command/9391.md
@@ -3,7 +3,7 @@
3
^D
4
<p>Lorem ipsum.</p>
5
<figure>
6
-<img src="media/image1.png" style="width:1.10263in;height:1.10263in" />
+<img src="media/image1.png" style="width:1.09702in;height:1.09702in" />
7
<figcaption><p>Blue square.</p></figcaption>
8
</figure>
9
```
0 commit comments