This repository holds terminal extensions for [Sphinx], designed to be used
with the [Jupyter Book] platform.
It implements vivacious terminal transcripts that can be easily embedded
in your [Sphinx] documentation and [Jupyter Book] pages.
The sphinx-term
extension relies on two web terminal window packages:
This readme file holds a technical documentation of the sphinx-term
extension.
For a [Jupyter Book] user guide and usage example of the terminal boxes
visit the [example page] hosted on GitHub Pages, the source of which is
available in the [docs] folder of this repository.
This readme file uses [Jupyter Book]'s [MyST Markdown] syntax for roles and directives -- see [MyST overview] for more details. For use with [Sphinx], please refer to the [reStructuredText] syntax.
sphinx-term
To get started with sphinx-term
, first install it via pip
:
pip install sphinx-term
then, add the cssterm
and/or termynal
module of the sphinx_term
extension to the Sphinx extensions
list in your conf.py
...
extensions = [
'sphinx_term.cssterm',
'sphinx_term.termynal'
]
...
The sphinx_term.cssterm
module defines the
cssterm
directive, which is used for building [cssterm] terminal windows.
A [cssterm] terminal box is included with the cssterm
directive:
```{cssterm} cssterm:my-id
$ echo "My terminal transcript"
My terminal transcript
Each [cssterm] box can be referenced with its name using the `ref` role,
e.g., `` {ref}`cssterm:my-id` ``, which produces *terminal box* hyper-link.
The default hyper-link text can be changed with with the following `ref` role
syntax: `` {ref}`custom hyper-link text <cssterm:my-id>` ``.
See the [MyST Markdown documentation] for more details.
### Configuration parameters ###
The `cssterm` extension uses one [Sphinx] configuration parameter:
* `sphinx_term_cssterm_dir` (**required** when loading the box content
from a file) -- defines the path to a directory holding files with content
(terminal transcript) of each terminal box.
### Arguments, parameters and content ###
Each [cssterm] box has one **required** argument that specifies
the *unique* id of this particular terminal block.
This id **must** start with the `cssterm:` prefix.
The content of a [cssterm] box can **either** be provided explicitly within the
directive, **or** -- when the content is left empty -- it is pulled from a
terminal transcript file whose name is derived from the terminal box id,
and which should be located in the directory specified via the
`sphinx_term_cssterm_dir` configuration parameter.
The terminal transcript file name is expected to be the [cssterm] block id
**without** the `cssterm:` prefix and **with** the `.log` extension.
For example, for a [cssterm] block with `cssterm:my_log` id, the terminal
transcript file should be named `my_code.log`.
The `sphinx_term.cssterm` [Sphinx] extension *monitors* the code files for
changes and automatically regenerates the affected pages.
## :keyboard: termynal directive ##
The [`sphinx_term.termynal`](sphinx_term/termynal.py) module defines the
`termynal` directive, which is used for building [termynal] terminal windows.
### Usage ###
A *[termynal] box* is included with the `termynal` directive:
````text
```{termynal} termynal:my-id
- value: echo "My terminal transcript"
type: input
- My terminal transcript
The content of the directive is a **yml-formatted list** of lines to be
displayed by the terminal (i.e., the terminal transcript).
Each element of this list can either be:
- an **empty** element -- indicating a plain, empty line;
- a **string** -- specifying a plain line of terminal *output* text; or
- a **dictionary** -- defining more complex line style.
Each line defined as a *dictionary* supports the following **optional** keys:
- `value` (default *empty string*) -- the content of the termynal
line given as a string;
- `type` (default *none*) -- the line type where:
* `input` indicates that the termynal line is an input,
* `progress` creates a progress bar (`value` is not required), and
* *empty string* (`''`) or *undefined* to get a plain *output* line --
the default behaviour;
- `prompt` (default `$`) -- a string specifying the prompt style;
- `progressPercent` (default `100`) -- the maximum percent of the
`progress` bar;
- `progressChar` (default `█`) -- the character used to build the
`progress` bar (*see below for more details*);
- `typeDelay` (default `90`) -- the delay between each typed
character given in milliseconds (*see below for more details*); and
- `cursor` (default `▋`) -- the character used as the cursor
(*see below for more details*).
For more information about customising termynal lines refer to the official
documentation of [termynal lines][termynal-line].
Each [termynal] box can be referenced with its name using the `ref` role,
e.g., `` {ref}`termynal:my-id` ``, which produces *terminal box* hyper-link.
The default hyper-link text can be changed with with the following `ref` role
syntax: `` {ref}`custom hyper-link text <termynal:my-id>` ``.
See the [MyST Markdown documentation] for more details.
### Configuration parameters ###
The `termynal` extension uses one [Sphinx] configuration parameter:
* `sphinx_term_termynal_dir` (**required** when loading the box content
from a file) -- defines the path to a directory holding files with content
(terminal transcript) of each terminal box.
### Arguments, parameters and content ###
Each [termynal] box has one **required** argument that specifies
the *unique* id of this particular terminal block.
This id **must** start with the `termynal:` prefix.
The content of a [termynal] box can **either** be provided explicitly within
the directive, **or** -- when the content is left empty -- it is pulled from a
terminal transcript file whose name is derived from the terminal box id,
and which should be located in the directory specified via the
`sphinx_term_termynal_dir` configuration parameter.
The terminal transcript file name is expected to be the [termynal] block id
**without** the `termynal:` prefix and **with** the `.yml` extension.
For example, for a [termynal] block with `termynal:my_log` id, the terminal
transcript file should be named `my_code.yml`.
The `sphinx_term.termynal` [Sphinx] extension *monitors* the code files for
changes and automatically regenerates the affected pages.
The `termynal` directive takes a number of **optional** parameters
(see the official documentation of [termynal boxes][termynal-conf] for more
information):
- `prefix` (default `ty`) -- the prefix used for data attributes;
- `startDelay` (default `600`) -- the delay before animation,
given in milliseconds;
- `typeDelay` (default `90`) -- the delay between displaying each typed
character, given in milliseconds;
- `lineDelay` (default `1500`) -- the delay between displaying each line,
given in milliseconds;
- `progressLength` (default `40`) -- the number of characters used when
displaying a progress bar;
- `progressChar` (default `█`) -- the character used for building
progress bars;
- `cursor` (default `▋`) -- the character used for displaying the cursor;
- `noInit` (default `false`) -- whether to initialise the animation when the
termynal window is loaded.
When set to `true`, the termynal window can be initialised by explicitly
calling `Termynal.init()`; and
- `lineData` (default `null`) -- the sequence used to dynamically load termynal
lines at instantiation.
---
> The CSS and JS files used by this [Sphinx] extension are loaded as
git submodules into the [`sphinx_term/_static`](sphinx_term/_static)
directory of this repository.
[sphinx]: https://www.sphinx-doc.org/
[jupyter book]: https://jupyterbook.org/
[termynal]: https://github.com/ines/termynal
[cssterm]: https://github.com/nstephens/cssterm
[termynal]: https://github.com/ines/termynal
[termynal-conf]: https://github.com/ines/termynal#customising-termynal
[termynal-line]: https://github.com/ines/termynal#prompts-and-animations for description
[example page]: https://so-cool.github.io/sphinx-term
[doc]: docs
[myst markdown]: https://myst-parser.readthedocs.io/
[myst overview]: https://jupyterbook.org/content/myst.html
[reStructuredText]: https://docutils.sourceforge.io/rst.html
[MyST Markdown documentation]: https://myst-parser.readthedocs.io/en/latest/syntax/syntax.html#targets-and-cross-referencing