diff options
| -rw-r--r-- | README | 14 | ||||
| -rw-r--r-- | src/Text/Pandoc/Writers/ODT.hs | 10 | 
2 files changed, 20 insertions, 4 deletions
| @@ -51,6 +51,15 @@ default (though output to *stdout* is disabled for the `odt`, `docx`,      pandoc -o output.html input.txt +By default, pandoc produces a document fragment, not a standalone +document with a proper header and footer.  To produce a standalone +document, use the `-s` or `--standalone` flag: + +    pandoc -s -o output.html input.txt + +For more information on how standalone documents are produced, see +[Templates](#templates), below. +  Instead of a file, an absolute URI may be given.  In this case  pandoc will fetch the content using HTTP: @@ -96,6 +105,11 @@ should pipe input and output through `iconv`:      iconv -t utf-8 input.txt | pandoc | iconv -f utf-8 +Note that in some output formats (such as HTML, LaTeX, ConTeXt, +RTF, OPML, DocBook, and Texinfo), information about +the character encoding is included in the document header, which +will only be included if you use the `-s/--standalone` option. +  Creating a PDF  -------------- diff --git a/src/Text/Pandoc/Writers/ODT.hs b/src/Text/Pandoc/Writers/ODT.hs index 03f8e8ba4..2a4129512 100644 --- a/src/Text/Pandoc/Writers/ODT.hs +++ b/src/Text/Pandoc/Writers/ODT.hs @@ -41,7 +41,7 @@ import Control.Applicative ((<$>))  import Text.Pandoc.Options ( WriterOptions(..) )  import Text.Pandoc.Shared ( stringify, readDataFile, fetchItem', warn )  import Text.Pandoc.ImageSize ( imageSize, sizeInPoints ) -import Text.Pandoc.MIME ( getMimeType ) +import Text.Pandoc.MIME ( getMimeType, extensionFromMimeType )  import Text.Pandoc.Definition  import Text.Pandoc.Walk  import Text.Pandoc.Writers.Shared ( fixDisplayMath ) @@ -51,7 +51,7 @@ import Text.Pandoc.XML  import Text.Pandoc.Pretty  import qualified Control.Exception as E  import Data.Time.Clock.POSIX ( getPOSIXTime ) -import System.FilePath ( takeExtension, takeDirectory ) +import System.FilePath ( takeExtension, takeDirectory, (<.>))  -- | Produce an ODT file from a Pandoc document.  writeODT :: WriterOptions  -- ^ Writer options @@ -133,12 +133,14 @@ transformPicMath opts entriesRef (Image lab (src,_)) = do       Left (_ :: E.SomeException) -> do         warn $ "Could not find image `" ++ src ++ "', skipping..."         return $ Emph lab -     Right (img, _) -> do +     Right (img, mbMimeType) -> do         let size = imageSize img         let (w,h) = fromMaybe (0,0) $ sizeInPoints `fmap` size         let tit' = show w ++ "x" ++ show h         entries <- readIORef entriesRef -       let newsrc = "Pictures/" ++ show (length entries) ++ takeExtension src +       let extension = fromMaybe (takeExtension $ takeWhile (/='?') src) +                           (mbMimeType >>= extensionFromMimeType) +       let newsrc = "Pictures/" ++ show (length entries) <.> extension         let toLazy = B.fromChunks . (:[])         epochtime <- floor `fmap` getPOSIXTime         let entry = toEntry newsrc epochtime $ toLazy img | 
