ODT writer:

Revise commit 9496ce818b
so it doesn't change image links. (These should have already been
adjusted.)

See #3524.
This commit is contained in:
John MacFarlane
2022-10-24 14:34:40 -07:00
parent 9496ce818b
commit c73ebb8a03
-2
View File
@@ -74,8 +74,6 @@ fixInternalLinks = walk go
where
go (Link attr ils (src,tit)) =
Link attr ils (fixRel src,tit)
go (Image attr ils (src,tit)) =
Image attr ils (fixRel src,tit)
go x = x
fixRel uri =
case parseRelativeReference (T.unpack uri) of