Skip to content

bbailleux/pandoc-terminal-writer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pandoc Terminal Writer -- Pretty-print text documents on a terminal

Presentation

This is a custom writer (output driver) for pandoc written in lua. When chosen as output format, it will pretty-print the input document on the terminal. It makes heavy use of VT100 control sequences and Unicode box-drawing characters.

As Pandoc supports many input formats:

(several dialects of) Markdown, reStructuredText, textile, HTML, DocBook, LaTeX, MediaWiki markup, TWiki markup, TikiWiki markup, Creole 1.0, Vimwiki markup, OPML, Emacs Org-Mode, Emacs Muse, txt2tags, Microsoft Word docx, LibreOffice ODT, EPUB, or Haddock markup.

this writer is suitable for displaying any document in any of these input formats.

Usage

You need to have pandoc installed on your machine, and the terminal.lua script from this repository copied somewhere on your machine.

Then invoke the reader with

$ pandoc -t [path/to/]terminal.lua [the_document]

# e.g.:

$ pandoc -t terminal.lua README.md

As word wrapping is not yet supported, you may want to pipe the output into the fold command. You may also want to use a pager such as less:

$ pandoc -t terminal.lua README.md | fold -s | less -r

Note that currently the word wrapping as implemented by fold will break the indentation and the code and quote blocks decorations. This is an issue we want to address inside the writer in the near future.

This writer tries to adapt automatically the maximal width of some elements (like table or blockquotes). If you want to narrow those elements, you can export the "COLUMNS" environment variable with the terminal width of you choice:

$ COLUMNS=80 pandoc -t terminal.lua README.md | less -r

Demo

A screenshot is worth 1000 words:

This document :

Current README.md

Another Markdown document :

the showcase.md test document

A LibreOffice text document

LibreOffice and terminal rendered document

Authors

© 2018 — 2020 Orange

Camille Oudot

Benoît Bailleux

Licence

This work is published under the MIT license

About

Pretty-print text documents on a terminal using pandoc

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%