MultiMarkdown Converter Pro



2020-12-23

The Question :

Convert Rich Text to MultiMarkdown; Treat 'Preserve Formatting' as Raw Markup. Press Enter to close the Compile dialog and generate output. Now wipe the sweat off your brow. Fortunately, the options are sticky, so you only need to do this configuration once per project. After you close the Compile dialog, Scrivener opens a Save As dialog. Markdown is an easy to write and read text markup language. This paper introduces 78 tools for writing and viewing markdown, including desktop, mobile and web. Markable Powerful online markdown editor, support syntax highlight, auto indent, highlight the line, display the number of lines, instant preview. It supports converting HTML to markdown.

Almost every existing md to PDF goes through LaTeX: kramdown, pandoc, multimarkdown, etc.

Are there the options that don’t, in any language, e.g. using a backend such as Prawn, libharu or jsPDF?

So far I have only found:

  • asciidoctor-pdf This Prawn based asciidoc converter is quite active and has a lot of stars.

    Markdown to Asciidoc with Pandoc and then this is the best option I’ve seen so far.

    It is not however perfect to the point of being professional production ready, in particular:

    • floats like code and image don’t… float, so you get vertical whitespace on line breaks when you have large floats: https://github.com/asciidoctor/asciidoctor-pdf/issues/353
    • some lines have too few words, but they are still justified horizontally, which leads to too much white space between words. TODO find / create ticket.
  • Gimli, but it does not seem very active (last commit 7 months ago). Backend?

  • markdown_prawn. Not many stars. Last commit 3 years ago.

  • Kramdown Prawn experimental converter. Experimental.

  • cmarkpdf: CommonMark to PDF through libharu by @jgm. Experimental.

  • Qt5 QPrinter. Used by the Retext editor through the PyQt5 Python API. TODO test. Likely to be analogous to a PhantomJS-like solution but for Qt instead of browser.

If you can convert the HTML subset generated from Markdown to PDF well, then that is a solution, but I am yet to find a free software that does it properly. For example, PhantomJS conversions break markdown links <http://a.com>, which show as simple styled text on the PDF, not as clickable links that open on preferred browser, which are generated through LaTeX conversions.

Non free possibilities:

  • O’Reilly Atlas is doing it for their HTMLBook (HTML5 subset), but they’re not gonna open source that anytime soon.

  • Prince XML. Free for non-commercial use.

Related: Ruby only SO question.

Why I want this: LaTeX is slow, produces horrible error messages, is hard to install, and is overly complex for the small subset needed for Markdown.

Partial solutions:

  • Sphinx allows RST to PDF with https://code.google.com/p/rst2pdf/ which uses https://bitbucket.org/rptlab/reportlab on the backend.
  • Do you care what OS/Web-app? Also how about price?
  • @NickWilde The freer the better, the more cross the better. Linux support would make me happy. But I wanna hear all options =)
  • Oh and forgot to ask what kind of interface do you want – CLI or GUI. If CLI I have an option that I’m pretty sure doesn’t use LaTex.
  • @NickWilde I prefer CLI, but once again, I want to know all of them.
  • prefer CLI well then that is great :D… answer coming right up.

The Answer 1

16 people think this answer is useful

Node.js Package Markdown-PDF should work well. I have been using the Grunt package of that, but just for the sake of a good answer I just quickly ran the the original via the command line; and yeap it works great.

Converter

So to use the CLI of Markdown-PDF just:

  1. Install Node.js (if necessary)
  2. Install Markdown-PDF – from cmdline just run npm install -g markdown-pdf
  3. run markdown-pdf -o readme.pdf readme.md (or whatever source and destination and other options you want; see CLI Options for all the details of what you can specify).

It is Open-Source (MIT licenced), and has a Github repo, it is free and as far as I’ve found it is is quite fast.

There may be a slight problem with getting images from https:// domains but I haven’t investigated what is up there – one of my images is not being loaded so this is most likely just something funny in my md but there is a slight chance that is a bug.

One significant bug: clickable links are not created.

The Answer 2

MultiMarkdown Converter pro

I personally am a huge fan of pandoc.

Pandoc is the “swiss-army” knife tool of format conversions:

Problems
  • Its core source input format supported is Markdown (including any of the major MD “dialects” such as the flavors of GitHub and PHP plus several special extensions). Other input formats are: HTML, rST, Textile, DocBook XML, MediaWiki.
  • As output formats it supports: ConTeXt, LaTeX, PDF and Beamer PDF (albeit requiring LaTeX in the background), MediaWiki, DOCX, DocBook, rST, Textile, ASCIIDoc, texinfo, org (Emacs Org-mode), S5 (HTML slides), Slidy (HTML slides), Slideous (HTML slides), ImpressJS (HTML slides), DZSlides (HTML slides), HTML, HTML5, EPUB, EPUB3
    …and: manpage (GROFF manpage) and ODT (OpenDocument Text).

Are you still with me? Good.

Did you notice the last two, manpage and ODT?

Well, these are the two output formats which I personally “abuse” as intermediate formats in order to arrive at PDF for final documents when I do not want LaTeX involved.

I’ve automated my workflow and process chain with the help of a Makefile. So I just need to type make mydoc.latexpdf, or make mydoc.odtpdf, or make mydoc.manpdf. The Makefile is set up to look for an input of mydoc.mmd, and then it sets the appropriate commands in motion: pandoc to create the PDF directly (which in the background first converts to LaTeX and then runs pdflatex itself), ODT or manpage. Then the next command is to create the final format:

  • For my .odtpdf target it runs LibreOffice in headless mode. Here are the basic command lines I use for the (I’m on OS X, so for Linux or Windows you’ll have to adapt paths accordingly). Attention, command is in Makefile syntax — cannot be directly used in Shell without prior adaption:

  • For my .manpdf target it uses man -t to create PostScript from Pandoc’s manpage output file, then uses Ghostscript to create the PDF. It therefore runs:

Customize the look’n’feel of your ODT output

The non-LaTeX path to PDF via ODT is the most “sexy” for me…

  • …because Pandoc knows how to apply some nice personalized styles to a target ODT if only these styles are properly defined in a myreference.odt ! (These styles will of course then transfer to the PDF too.)

I can then run the Pandoc command (via Makefile or in the Shell) to create an ODT to my likings, complete with the font faces, sizes and colors I prefer, with the page sizes and page headers, footers or backgrounds I defined (again: Makefile syntax!):

The --from=markdown+...+...+ parameter tells Pandoc to accept several Markdown syntax extensions which I like to use in my MD source files.

The sweet secret to get the styles in the ODT document lies with the --reference-odt=/path/to/myreference.odt command line parameter.

The ODT output works with references and bibliography even (if your Markdown input is properly written for this)!

Using Windows?

In principle, this workflow should work on Windows too, because Pandoc also runs on Windows. I have run Pandoc on Windows before, but I have not myself setup a completely automatic workflow, first Pandoc: Markdown -> ODT, then .soffice: ODT-> PDF based on a Makefile here, though…

But you may want to explore another path on Windows:

  • create a DOCX output from Pandoc first;
  • then convert the DOCX to PDF (automatically or interactively via WinWord).

Yes, you can also customize the styles of the DOCX output files by using the --reference-docx=my-reference.docx switch. Just create a my-reference.docx file first which uses exactly the styles you want. Pandoc will then extract these from the reference doc and apply them to the output DOCX it generates!

From there, you can look how to convert the intermediate DOCX file to PDF. This can also be done automatically: you may also want to consider OfficeToPDF.exe. It is hosted on CodePlex, licensed with the Apache 2.0 License and available in binary and in source code.

Finally: be sure to use the latest and greatest version of Pandoc (currently v1.17.0.3 or later) — there have been a lot of features added in recent months, esp. when it comes to DOCX output!

The Answer 3

I’ve investigated another option. Compared to Markdown-PDF:

  • Pros:
    • Actually makes proper links.
    • Actually slightly quicker to run
  • Cons:
    • Not as “pretty” – except for the links everything looks nicer with Markdown-PDF. This would be easily fixable by adding some CSS to the HTML before PDF generation though*.
    • Installation is more complicated.

This is also a Nodejs based solution which uses the Marked and wkhtmltopdf node packages.

Installation:

  • Install Nodejs.
  • Install Marked – easiest via commandline: npm -g install marked
  • Install wkhtmltopdf NPM – easiest via commandline: npm -g install wkhtmltopdf
  • Install wkhtmltopdf main files – no installer available.
  • Add wkhtmltopdf bin directory to the PATH

Usage:

To use takes two CLI calls. You can of course just save this as a batch file and run that.

* Because of the links working I may switch to this method instead of Markdown-PDF in which case I’ll likely write a wrapper to add some CSS (with an option to add a sensible default or user defined). The wrapper would also make it one call instead of two for running and probably could make it one npm install cmd instead of the manual install. If/when I do that I’ll share that here.

The Answer 4

To build on @nick-wilde’s solution, if you are using grunt there are plugins for both marked and wkhtmltopdf:

After installing the main wkhtmltopdf binary you can then install the plugins using npm:

Then use something like this in your Gruntfile.js:

Then in your build you just call the two in succession:

If you want it to look pretty, you’ll have to fiddle more with the marked settings, but I’m sure it’s doable.

Multimarkdown Converter Programs

The Answer 5

It’s not sexy, but AbiWord will convert HTML to PDF.

So, assuming you’ve got abiword installed:

The Answer 6

I have recently created a service to convert markdown documents to PDF. It supports GitHub flavoured markdown as well as syntax highlighting. The service is located at: http://markdown2pdf.com

Converter

The Answer 7

I just convert from HTML instead. This works for my needs:

I found that in general Markdown is not a good format to convert to PDF, as itdoesnt have native CSS support. Here is the script I use:

This solution just needs PHP (25 MB) and DomPdf (4 MB), so quite lightweightcompared to other options.

Announcing MultiMarkdown Converter – Available on the App Store!

MultiMarkdown Converter is a brand new utility from MultiMarkdown Software,designed to make using MMD even easier!

MMD easily converts plain text into HTML for web pages, EPUB 3 for ebookreaders, LaTeX for creating high-quality PDFs, or even Flat OpenDocument filesfor use in LibreOffice or other wordprocessors.

MMD is a command-line program that is open-source and freelyavailable. To use it, you typecommands into the Terminal, such as:

It’s not too complicated, but not everyone wants use command-line programs.Some people prefer to stick with using more familiar applications, draggingand dropping files, etc.

That’s where MultiMarkdown Converter comes in. MMD Converter allows you tosimply drag and drop text files, and it quickly converts them into the formatyou desire. There are no terminal commands to remmeber – just a few checkboxes to easily control MMD’s behavior.

Features

  • MMD v6 built-in

  • Multiple output file formats:

    • HTML 5
    • EPUB 3 (including images)
    • LaTeX (including beamer or memoir)
    • Flat OpenDocument
  • Support for CriticMarkup – track changes inyour document, collaborate with others while revising documents, etc.

  • “Smart” typography conventions for English, Dutch, French, German, andSwedish

  • Batch processing of multiple files at once

  • No need to update MultiMarkdown yourself – MultiMarkdown Converter will bekept up to date when MMD is updated

Why Should I Use MultiMarkdown Converter?

If you already use MMD in the Terminal, you may not need MMD Converter. Ituses the same MMD you already know and love. You probably already understandthe power and flexibility of command-line programs – they can be used in waysthat graphical applications can’t.

However, sometimes it fits better into a work flow to be able to drag and dropfiles, and that can’t be easily done with command-line programs on macOS.

Or maybe you don’t want to remember to update your installation of MMD everytime it gets updated, but want to make sure you’re using the latest andgreatest. MultiMarkdown Converter will be kept up to date by macOSautomatically.

Maybe you’re new to the idea of Markdown/MultiMarkdown, and want to experimentwith an easy to use application, but you’re not ready to invest in a full-featured editor, such as MultiMarkdown Composer. MMD Converter allows you toeasily work with MMD alongside your favorite text editor without any hassle.

Which Version Should I Use?

There will probably be two versions of MMD Converter:

  • MultiMarkdown Converter Pro
  • MultiMarkdown Converter Lite
MultiMarkdown Converter Pro

MultiMarkdown Converter Pro supports all output formats for MMD. The litevariant has the same great features and ease of use, except that it onlysupports converting to HTML. I might create an EPUB only version as well,but that will depend on the App Store approval process.

NOTE: There will probably be additional output formats for MMD in thefuture. These would be included in the general MMD Converter application oncecompleted, but the HTML and EPUB variants would remain the same.

Where Can I Get Help?

If you have trouble with MultiMarkdown Converter, check out our support.

Multimarkdown Converter Pro Free

Learn more about MultiMarkdown itself here.

Where Can I Buy MultiMarkdown Converter?

MultiMarkdown Converter Pro

All versions of MultiMarkdown Converter can be downloaded from the Mac AppStore.