toolstack / Folio

A beautiful markdown note-taking app for GNOME (forked from Paper)
GNU General Public License v3.0
179 stars 22 forks source link

Convert to pdf #105

Open spazziale opened 7 months ago

spazziale commented 7 months ago

Some existing tool such as pandoc (which supports many other formats, but for now I would limit to pdf) can be used. If the feature is of interest I could try to implement it

toolstack commented 7 months ago

Would probably just make more sense to implement #97 for printing to PDF?

LiamJFitzpatrick commented 6 months ago

I just wanted to add into here that pandoc can accomplish this fairly easily. I'm not sure if the goal is to integrate directly into the Folio src but this is how I would do it with pandoc:

  1. sudo apt install pandoc
  2. Navigate to location that Folio notes are saved
  3. pandoc -f Markdown note1.md -o note1.pdf

More info on Pandoc manual