Markdown To Pdf Npm



2020-12-23

ฉันใช้คลาส tufte:: tuftehandout ใน RMarkdownRstduio มีวิธีรับตารางแบบเต็มความกว้างเหมือนที่คุณสามารถสร้างพล็อตภาพเต็มความกว้างได้หรือไม่แก้ไข: เพื่อความชัดเจนฉันรู้วิธีสร้างตัวเลขเต็มความกว้าง. Install the dependancies with npm install 4. Start the server with npm start The project will run on localhost:3000 in the browser. Markdown To PDF. A popup lets you choose between the output formats PDF, DOCX, and HTML. To indicate that you're switching from Markdown to HTML; you just use the tags.

The Question :

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.

    Use a USB cable to connect your controller to your Mac or PC. Launch PS Remote Play app on your PC or Mac, and then select Sign In to PSN. Sign in with the same account that you use for your console. When you select Settings, you can configure video quality settings for Remote Play such as resolution and frame rate. Select PS5 or PS4. With Remote Play, you can control your PlayStation® console remotely wherever you have a high-speed internet connection. Using the PS Remote Play app, you can control your PlayStation®5 console or PlayStation®4 console from a device in a different location. For example, you can use a computer in another room or a smartphone. when you’re out to enjoy PS5™ and PS4™ games. Ps4 remote play macbook pro. Play your favorite games on PS5 and PS4 consoles, pause the action and switch to another device on your broadband network, without being tied to the TV. PS Remote Play is available on Android smartphones and tablets, iPhone or iPad, Windows PC and Mac, as well as your PS5 and PS4 consoles.

  • 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.

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

I personally am a huge fan of pandoc.

Pandoc is the “swiss-army” knife tool of format conversions: Planner 5d unlock.

  • 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.

Npm

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!):

Pdf

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?

Markdown To Pdf Npm Converter

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…

Markdown To Pdf Npm

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!

Pdf

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.

Markdown To Pdf Npm

The Answer 5

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

Markdown To Pdf Windows

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

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:

Vscode Md To Pdf

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

Todays note is nothing more than a quick tip.I’m a big fan of the Markdown markup language, but sometimes I need to exchange documents with people who don’t know how to read them.Often, they prefer just Word or PDF.So I looked for a way to convert a Markdown file to a PDF file.

My current solution is based on Node.js so you need to install that first.Then use npm, the package manager for javascript, to install the markdown-pdf package using

Md File To Pdf

As a little convenience for myself, I added a shell alias to my ~/.zsrc (but you can of course add it to ~/.bashrc or whatever shell you’re using):

It does two things:

Markdown To Pdf Npm Convert

  1. It make the command shorter and easier to remember.Very important to me :).
  2. It sets some default options that I tend to forget.-f A4 sets the format of the generated PDF to A4-m '{'breaks':false}' tells the underlying Markdown engine not to treat a line break as a new paragraph.I usually have every sentence on a new line.Without this -m flag, it would generate a new paragraph for each of them, which is not what I wanted.