OpenDocument writer: don't print alt text with Image.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1344 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
ab2844dc5b
commit
504a61a97b
1 changed files with 2 additions and 2 deletions
|
@ -383,7 +383,7 @@ inlineToOpenDocument o ils
|
|||
| TeX s <- ils = preformatted s
|
||||
| HtmlInline s <- ils = preformatted s
|
||||
| Link l (s,t) <- ils = mkLink s t <$> inlinesToOpenDocument o l
|
||||
| Image l (s,t) <- ils = mkImg s t <$> inlinesToOpenDocument o l
|
||||
| Image _ (s,_) <- ils = return $ mkImg s
|
||||
| Note l <- ils = mkNote l
|
||||
| otherwise = return empty
|
||||
where
|
||||
|
@ -392,7 +392,7 @@ inlineToOpenDocument o ils
|
|||
, ("xlink:href" , s )
|
||||
, ("office:name", t )
|
||||
] . inSpanTags "Definition"
|
||||
mkImg s _ l = ($$) l . inTags False "draw:frame" [] $
|
||||
mkImg s = inTags False "draw:frame" [] $
|
||||
selfClosingTag "draw:image" [ ("xlink:href" , s )
|
||||
, ("xlink:type" , "simple")
|
||||
, (" xlink:show" , "embed" )
|
||||
|
|
Loading…
Reference in a new issue