zsh-remark
v11.0.4
Published
Markdown processor powered by plugins part of the @unifiedjs collective
Downloads
3
Maintainers
Readme
remarkjs/remark as a Zsh package
NPM link: https://www.npmjs.com/package/zsh-remark
Homepage link: remarkjs/remark
| Package source: | Tarball | Git | Node | Gem | |:-------------------:|:-------:|:---:|:----:|:---:| | Status: | - | - | + (default) | – |
Zplugin can use the NPM package registry to automatically:
- get the plugin's Git repository OR release-package URL,
- get the list of the recommended ices for the plugin,
- there can be multiple lists of ices,
- the ice lists are stored in profiles; there's at least one profile, default,
- the ices can be selectively overriden.
Example invocations that'll install remarkjs/remark by using the bin-gem-node annex:
# Download the Node package of remark-cli, remark-man and remark-html
zplugin pack for remark
# Download the Node package of remark-cli and remark-man
zplugin pack"man-only" for remark
# Download the Node package of remark-cli and remark-html
zplugin pack"html-only" for remark
Default Profile
Provides the CLI command remark
with two plugins: Man and Html.
The Node packages are installed locally into a null-plugin directory (feature of
the bin-gem-node annex) and provided to the command line through shims, i.e.:
automatic forwarder scripts created under $ZPFX/bin
(which is added to the
$PATH
by default; shims are also a bin-gem-node annex feature).
The Zplugin command executed will be equivalent to:
zplugin lucid as=null \
node="remark <- !remark-cli; remark-man; remark-html" \,
sbin="n:node_modules/.bin/remark" for \
zdharma/null
man-only
Profile
Provides the CLI command remark
with single plugin: Man.
The Zplugin command executed will be equivalent to:
zplugin lucid as=null \
node="remark <- !remark-cli; remark-man" \,
sbin="n:node_modules/.bin/remark" for \
zdharma/null
html-only
Profile
Provides the CLI command remark
with single plugin: Html.
The Zplugin command executed will be equivalent to:
zplugin lucid as=null \
node="remark <- !remark-cli; remark-html" \,
sbin="n:node_modules/.bin/remark" for \
zdharma/null