axiros / terminal_markdown_viewer

Styled Terminal Markdown Viewer
Other
1.81k stars 106 forks source link

how pager like less? #22

Closed gatspy closed 8 years ago

gatspy commented 8 years ago

what cmd can pager?

axgkl commented 8 years ago

hi,

mdv foo.md | less ?

myoung34 commented 5 years ago

Bad ticket aside, that piping does not work as expected:

  # Built Tools

  The easiest way to change the way the world gets built

Renders fine:


Built Tools
  The easiest way to change the way the world gets built

but when piped to more/less:

ESC[38;5;59mESC[0mESC[38;5;231mBuilt ToolsESC[0m
ESC[38;5;188m  The easiest way to change the way the world gets builtESC[0m
seasonedfish commented 4 years ago

@myoung34 I had this same issue; the -R option must be added to output "raw" control characters.

mdv foo.md | less -R