Paradoc
CLICommands

renderers

Last updated on

Manage renderer plugins

Manages the unified renderer package used by the render and inspect commands.

Usage

para renderers <command>

Overview

@paradoc/render is not bundled with the CLI. It is installed on demand the first time you run render or inspect, then cached in ~/.paradoc/renderers/.

Available package:

PackageUsed forRuntime dependency
@paradoc/renderText, Markdown, HTML, PDF, DOCX, and inspectfflate

Subcommands

CommandDescription
statusShow installation status of all renderers
installInstall a renderer (or all)
removeRemove a renderer (or all)
updateReinstall all renderers to match current CLI version

renderers status

Show installation status of all renderers.

para renderers status [options]

Options

OptionDescription
--jsonOutput as JSON

Output

The status table contains one row for @paradoc/render, including its installed version, the version expected by the CLI, status, and installed size.


renderers install

Install a renderer, or all renderers if no name is given.

para renderers install [name]

Arguments

ArgumentDescription
namerender, text, pdf, or docx (all resolve to the unified package)

Examples

Install the renderer:

para renderers install

The format aliases install the same unified package:

para renderers install pdf

renderers remove

Remove a renderer, or all renderers if no name is given.

para renderers remove [name]

Arguments

ArgumentDescription
namerender, text, pdf, or docx (all resolve to the unified package)

renderers update

Reinstall all renderers to match the versions pinned by the current CLI release.

para renderers update

This is useful after upgrading the CLI to ensure renderer versions stay in sync.

See also

  • render - Render artifact layers
  • inspect - Inspect PDF form fields
  • reset - Reset CLI (also clears renderers)

On this page