Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Office & Productivity

This category covers office suites, document viewers, and note-taking applications.

Document Viewers

MuPDF

MuPDF is a lightweight PDF and XPS viewer.

Installation

environment.systemPackages = [ pkgs.mupdf ];

Verified Usage

# Show information about pdf resources
mutool info file.pdf

# Convert text from pdf
mutool draw -F text -o - file.pdf

# Convert images from pdf
mutool draw -F png -o page-%03d.png sample.pdf

pandoc

pandoc is a universal document converter.

Installation

environment.systemPackages = [ pkgs.pandoc ];

Verified Usage

# Convert Markdown to HTML
pandoc test.md -o test.html

# Convert Markdown to Word DOCX
pandoc test.md -o test.docx

# Convert HTML to Markdown
pandoc test.html -f html -t markdown -o converted.md