Error.hs (pandoc-2.11.1.1) | : | Error.hs (pandoc-2.11.2) | ||
---|---|---|---|---|
skipping to change at line 140 | skipping to change at line 140 | |||
" and convert that with pandoc." | " and convert that with pandoc." | |||
"pdf" -> "\nPandoc can convert to PDF, but not from PDF." | "pdf" -> "\nPandoc can convert to PDF, but not from PDF." | |||
_ -> "" | _ -> "" | |||
PandocUnknownWriterError w -> err 22 $ | PandocUnknownWriterError w -> err 22 $ | |||
"Unknown output format " <> w <> | "Unknown output format " <> w <> | |||
case w of | case w of | |||
"pdf" -> "To create a pdf using pandoc, use" <> | "pdf" -> "To create a pdf using pandoc, use" <> | |||
" -t latex|beamer|context|ms|html5" <> | " -t latex|beamer|context|ms|html5" <> | |||
"\nand specify an output file with " <> | "\nand specify an output file with " <> | |||
".pdf extension (-o filename.pdf)." | ".pdf extension (-o filename.pdf)." | |||
"doc" -> "\nPandoc can convert to DOCX, but not from DOC." | "doc" -> "\nPandoc can convert to DOCX, but not to DOC." | |||
_ -> "" | _ -> "" | |||
PandocUnsupportedExtensionError ext f -> err 23 $ | PandocUnsupportedExtensionError ext f -> err 23 $ | |||
"The extension " <> ext <> " is not supported " <> | "The extension " <> ext <> " is not supported " <> | |||
"for " <> f | "for " <> f | |||
PandocCiteprocError e' -> err 24 $ | PandocCiteprocError e' -> err 24 $ | |||
prettyCiteprocError e' | prettyCiteprocError e' | |||
PandocBibliographyError fp msg -> err 25 $ | PandocBibliographyError fp msg -> err 25 $ | |||
"Error reading bibliography file " <> fp <> ":\n" <> msg | "Error reading bibliography file " <> fp <> ":\n" <> msg | |||
err :: Int -> Text -> IO a | err :: Int -> Text -> IO a | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |