Skip to main content

A Sphinx extension to convert ASCII diagrams to SVGs with Svgbob.

Project description

sphinxcontrib-svgbob Stars

A Sphinx extension to render ASCII diagrams into SVG using Svgbob.

Actions Codecov License Source PyPI Wheel Python Versions PyPI - Implementation Changelog GitHub issues Downloads

🗺️ Overview

Diagrams to be included into Sphinx documentation are commonly described with a dedicated markup language, and converted into an image by Sphinx when the documentation is built. However, this reduces the legibility of the documentation source for readers that are not browsing the HTML version.

Svgbob is a diagramming model implemented in Rust that can convert ASCII diagrams into SVG. Using it allows you to:

  • Keep a textual version of the diagram in your documentation, so that it remains legible.
  • Render a nicer version as SVG for HTML or PDF versions of the documentation.

This Sphinx extension builds Svgbob statically and lets you use it to render ASCII diagrams within Sphinx documentation. Since it does not require any external dependency, it's also suitable to use on readthedocs.org.

🔧 Installing

sphinxcontrib-svgbob can be installed from PyPI, which hosts some pre-built CPython wheels for x86-64 Linux and OSX, as well as the code required to compile from source:

$ pip install sphinxcontrib-svgbob

If a Rust compiler is not available, the setup.py script will attempt to install a temporary copy if the package is compiled on a UNIX system. If it doesn't work, see the documentation on rust-lang.org to learn how to install Rust on your machine.

Then add this extension to the Sphinx extensions in your conf.py file to make the svgbob directive available:

extensions = [
    ...,
    "sphinxcontrib.svgbob",
]

That's it, you're all set!

💡 Example

Use the svgbob directive in a function docstring to show a diagram of what is being computed:

def hamming(x, y):
    """Compute the Hamming distance between two strings.

    Hamming distance between two strings of equal length is the number of
    positions at which the corresponding symbols are different. For instance,
    Hamming distance for a 3-bit string can be computed visually using a
    3-bit binary cube:

    .. svgbob::
       :align: center

                         110              111                          
                            *-----------*      
                           /|          /|
                          / |     011 / |     
                     010 *--+--------*  |
                         |  | 100    |  |
                         |  *--------+--* 101
                         | /         | /
                         |/          |/
                     000 *-----------*  001


    The minimum distance between any two vertices is the Hamming distance
    between the two bit vectors (e.g. 100→011 has distance 3).

    """

When Sphinx (and autodoc) renders the docstring of this function, you'll get the following HTML page (here shown with the Sphinx theme for readthedocs.org):

example1.html.png

And yet, the help(hamming) will still look nice and helpful:

example1.console.png

🔩 Configuration

The svgbob directive supports the following arguments:

  • font-size (integer): the size of the text to be rendered, defaults to 14.
  • font-family: the family of the font used to render the text, defaults to monospace.
  • fill-color (CSS color): the color to use to fill closed shapes.
  • stroke-color (CSS color): the color to use to paint strokes, defaults to black.
  • scale (float): the SVG scale of the figure, defaults to 8.0.
  • align (CSS align value): the alignment of the resulting image.
  • class (HTML class): an arbitrary class to add to the resulting HTML element.

For instance, use the following to use Arial with size 12, to render nicer text in the diagram blocks:

.. svgbob::
   :font-family: Arial
   :font-size: 12

   +-------+       +--------+
   | Hello |------>| World! |
   +-------+       +--------+

example2.svg

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

🏗️ Contributing

Contributions are more than welcome! See CONTRIBUTING.md for more details.

📚 Alternatives

🔨 Credits

sphinxcontrib-svgbob is developped and maintained by:

The structure of this repository was adapted from the aforementioned sphinxcontrib-kroki repository, as I had no experience setting up a Sphinx extension otherwise.

⚖️ License

This library is provided under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sphinxcontrib_svgbob-0.3.2.tar.gz (21.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sphinxcontrib_svgbob-0.3.2-cp38-abi3-win_amd64.whl (482.1 kB view details)

Uploaded CPython 3.8+Windows x86-64

sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (595.4 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_11_0_arm64.whl (546.5 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_10_12_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file sphinxcontrib_svgbob-0.3.2.tar.gz.

File metadata

  • Download URL: sphinxcontrib_svgbob-0.3.2.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2.tar.gz
Algorithm Hash digest
SHA256 6b17b278d4a1cb46c85e29b55f75ecd272b4098e7a4e19db3bdab37b426f75cb
MD5 f9ad71edb2505ec5dce26515e5b9d9b9
BLAKE2b-256 997b0961a42fa052935cb8320f4e2590d2d435ba8fe53d7b0d019772516e1def

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2.tar.gz:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinxcontrib_svgbob-0.3.2-cp38-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 dbddd1774ac31ef039adff11c294dce0ef94fd6cbbd9565df471d53d862422e5
MD5 ad3a7c5eac3e45c18e33931d69eea786
BLAKE2b-256 47660d9a87add8327c53a34da302f4ae6adfb9e5589347426d5cd8ea2118d8a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2-cp38-abi3-win_amd64.whl:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc6aa99ef6b15bddca0b45fda8ce98da2e7d1db1048c6d5721798d906e0d4c2
MD5 9faea28c937344e2254f98bcf5b09bbd
BLAKE2b-256 87bd206a2567e339eeb684a04451188f71c2482170c7c99718bb0887928323fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c4700ca226142b2bdbd213f670aef76185621c22e06f47f2420f143f6971738
MD5 032399b04734952f08f58845c9c31f36
BLAKE2b-256 50e9f0f4fbe65e3585bf655b270030e158e69cc60b2f4740250db2958257a7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03a05515875fe0ff1c7e7c088605a993d5d915e991f5c9991fef17c874708b3d
MD5 d65e21b860582c4d05c7b2115ef39c51
BLAKE2b-256 5e26607c6ddc76e5f36db0a3d54eee1317206efa442cc51277e454d2d9b26e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_11_0_arm64.whl:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eae4a846fa81b2fd73ff73daa8bf3612551b289b2d2b79d2f2f1cf887f7f5e2e
MD5 424afbdb56bcf15e0b45988ffe5fbf56
BLAKE2b-256 1b641d8e8a9410ab2652ee12a437cac23007c9129612e8b7cd0034573b3da20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinxcontrib_svgbob-0.3.2-cp38-abi3-macosx_10_12_x86_64.whl:

Publisher: publish.yml on sphinx-contrib/svgbob

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page