MDCAT(1) | mdcat | MDCAT(1) |
NAME
mdcat - render CommonMark Markdown to text terminals
SYNOPSIS
mdcat [OPTIONS] [FILE]...
mdless [OPTIONS] [FILE]...
DESCRIPTION
mdcat renders Markdown FILEs in CommonMark dialect to text terminals with sophisticated formatting. If no FILE is given, or if FILE is '-', it reads from standard input.
If invoked as mdless automatically use a pager to display the output, see below.
CommonMark and terminal support
mdcat supports all basic CommonMark syntax plus a few extensions, highlights syntax in code blocks, and shows inline links and even inline images in some terminal programs. In iTerm2 it also adds jump marks for section headings.
See section Terminal support below for a list of supported terminal programs and their features.
Terminal detection
To enable formatting extensions such as inline images, mdcat needs to detect the terminal program, by checking the following environment variables in the given order:
For some terminals mdcat also checks $TERM_PROGRAM_VERSION to determine whether the terminal supports the expected feature set.
See section ENVIRONMENT below for a detailed description of each environment variable.
Pagination
mdcat can render output in a pager; this is the default when run as mdless. The environment variables $MDCAT_PAGER and $PAGER control the pager used.
Note that common pagers do not support proprietary terminal codes for e.g. image support, so mdcat falls back to pure ANSI formatting when pagination is enabled. In particular this disables all image support which relies on proprietary escape codes.
Image support
In iTerm2, kitty, Terminology, WezTerm, and VSCode (1.80 or newer) mdcat prints inline images. mdcat supports most standard pixel formats by default.
mdcat silently ignores images larger than 100 MiB, under the assumption that images of that size cannot reasonably be rendered in a terminal.
SVG support
In Terminology mdcat also renders SVG images, using the built-in support of Terminology.
In iTerm2, kitty, VSCode, and WezTerm mdcat renders SVG images into pixel graphics using the resvg https://github.com/RazrFalcon/resvg library. Currently this library only supports SVG 1, and only the static subset thereof; see SVG support https://github.com/RazrFalcon/resvg#svg-support for details. While this is sufficient for most simple SVG images, complex SVG images may fail to render or render incompletely.
For local SVG files mdcat relies on the file extension to identify SVG images. For remote images from HTTP(S) URLs mdcat inspects the Content-Type header to identify SVG images.
HTTP/HTTPS support
mdcat fetches images from HTTP(S) URLs for rendering if the underlying terminal supports image rendering; pass --local to disable this and force mdcat to only use images from the local filesystem. In this case remote images render as hyperlinks.
Note that some terminals (e.g. Terminology) directly render images from URLs and do not require that mdcat fetches the image data first. In this case --local has no effect: mdcat always passes the URL to the terminal, and leaves it up to the terminal to fetch it.
OPTIONS
-p, --paginate
Note: When paginating mdcat only uses standard ANSI formatting and hyperlinks, but no images or other proprietary format codes, because pager programs normally do not support any of these.
This is the default when run as mdless.
-P, --no-pager
This is the default when run as mdcat.
-c, --no-colour
--ansi
--columns=COLUMNS
-l, --local
--fail
--detect-terminal
--completions=SHELL
_SHELL_ can be one of `bash`, `zsh`, `fish`, `powershell`, or `elvish`.
-h, --help
-V, --version
EXIT STATUS
mdcat exits with 0 if no error occurred, or 1 otherwise.
If run as mdless or if --paginate is given and the pager fails to start mdcat exists with 128.
ENVIRONMENT
TERM
mdcat first checks this variable to identify the terminal program (see section Terminal detection). It understands the following values.
For all other values mdcat proceeds to check $TERM_PROGRAM.
TERM_PROGRAM
For all other values mdcat proceeds to check $TERMINOLOGY.
TERM_PROGRAM_VERSION
TERMINOLOGY
Otherwise mdcat ends terminal detection and assumes that the terminal is only capable of standard ANSI formatting.
COLUMNS
mdcat only uses this variable if it fails to query the size from the underlying terminal.
ROWS
mdcat only uses this variable if it fails to query the size from the underlying terminal.
MDCAT_PAGER
The pager program must support basic ANSI formatting sequences, like e.g. less -r.
The value of this variable is subject to shell-like word-splitting. It is not subject to any kind of expansion or substitution (e.g. parameter expansion, process substitution, etc.).
If set to an empty value, mdcat completely disables pagination.
PAGER
Subject to the same rules as $MDCAT_PAGER.
If both $PAGER and $MDCAT_PAGER are unset use less -r as pager.
http_proxy, https_proxy, HTTPS_PROXY, all_proxy, ALL_PROXY, no_proxy, NO_PROXY
mdcat uses curl for its network transfers, hence see curl(1) for these variables.
MDCAT_LOG
See https://docs.rs/tracing-subscriber/latest/tracing_subscriber/struct.EnvFilter.html#directives for syntax details; use MDCAT_LOG=trace for complete debugging information, and MDCAT_LOG=pulldown_cmark_mdcat::render=trace to trace rendering only.
CONFORMING TO
CommonMark support, extensions, and limitations
mdcat supports version 0.30 of the CommonMark Spec https://spec.commonmark.org/, plus Task lists <https://github.github.com/gfm/#task-list-items-extension-> and strikethrough <https://github.github.com/gfm/#strikethrough-extension->, through pulldown-cmark https://github.com/raphlinus/pulldown-cmark.
mdcat does not yet support footnotes. Support for tables <https://github.github.com/gfm/#tables-extension-> is limited; text wrapping and inline markup in table cells are not yet supported. mdcat parses HTML blocks and inline tags but does not apply special rendering; it prints HTML as is.
Terminal support
Unless --no-colour is given, mdcat translates CommonMark text into ANSI formatted text, with standard SGR formatting codes and hyperlinks. It uses bold (SGR 1), italic (SGR 3) and strikethrough (SGR 9) formatting, and the standard 4-bit color sequences, as well as OSC 8 https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda for hyperlinks. It does not use 8-bit or 24-bit color sequences, though this may change in future releases.
Additionally, it uses proprietary escape codes if it detects one of the following terminal emulators (see sections Terminal detection and ENVIRONMENT for details):
BUGS
Please report bugs to https://github.com/swsnr/mdcat/issues.
Currently does not provide means to customize styles and colours.
EXAMPLES
mdcat hello - world
mdless hello
SEE ALSO
COPYRIGHT
Copyright Sebastian Wiesner <sebastian@swsnr.de> and contributors
Binaries are subject to the terms of the Mozilla Public License, v. 2.0. See https://github.com/swsnr/mdcat/blob/main/LICENSE.
Most of the source is subject to the terms of the Mozilla Public License, v. 2.0, unless otherwise noted; some files are subject to the terms of the Apache 2.0 license, see http://www.apache.org/licenses/LICENSE-2.0.
AUTHOR
Sebastian Wiesner
mdcat 2.7.1 |