Skip to main content

A literate programming extension for Sphinx

Project description

Literate Sphinx

Literate Sphinx is a literate programming extension for Sphinx. Literate programming is a method for writing code interleaved with text. With literate programming, code is intended to be written in an order that makes sense to a human reader, rather than a computer.

Producing the human-readable document from the document source is called "weaving", while producing the computer-readable code is called "tangling". In this extension, the weaving process is the normal Sphinx rendering process. For tangling, this extension provides a tangle builder — running make tangle will output the computer-readable files in _build/tangle.

As is customary with literate programming tools, the extension is also written in a literate programming style.

Usage

Install the extension by running pip install literate-sphinx, and add 'literate_sphinx' to the extensions list in your conf.py.

Code chunks are written using the literate-code directive, which takes the name of the chunk as its argument. It takes the following options:

  • lang: the language of the chunk. Defaults to highlight_language specified in conf.py
  • file: (takes no value) present if the chunk is a file. If the chunk is a file, then the code chunk name
  • class: a list of class names separated by spaces to add to the HTML output
  • padding: when multiple chunks have the same name, they are written out sequentially. The padding indicates how many blank lines (if any) there should be between this chunk and the previous chunk of the same name. Defaults to default_chunk_padding specified in conf.py, which itself defaults to 1. If given without an argument, one blank line is used.
  • name: a target name that can be referenced by ref or numref. This should not be confused with the code chunk name.

e.g in ReST

.. literate-code:: code chunk name
   :lang: python

   def hello():
       print("Hello world")

or in Markdown using MyST parser

```{literate-code} code chunk name
:lang: python

def hello():
    print("Hello world")
```

To include another code chunk, enclose it between {{ and }} delimiters. Only one code chunk is allowed per line. The code chunk will be prefixed with everything before the delimiters on the line, and suffixed by everything after the delimiters.

For example,

.. literate-code:: file.py
   :file:
   # before
   {{code chunk name}}
   # after

will produce a file called file.py with the contents

# before
def hello():
    print("Hello world")
# after

and

.. literate-code:: file.py
   :file:
   # before
   class Hello:
       {{code chunk name}} # suffix
   # after

will produce

# before
class Hello:
    def hello(): # suffix
        print("Hello world") # suffix
# after

The delimiters can be changed by setting the literate_delimiters option in conf.py, which takes a tuple, where the first element is the left delimiter and the second element is the right delimiter. For example:

literate_delimiters = ('<<', '>>')

The same code chunk name can be used for multiple chunks; they will be included in the same order that they appear in the document. If the document is split across multiple files, they will be processed in the same order as they appear in the table of contents as defined in the toctree directive.

In addition to the tangle builder for tangling the document into computer-readable code files, there is an annotated-tangle builder, which writes the computer-readable code to HTML files, annotated by the chunks that they come from. You can see an example by viewing the annotated tangling of this project.

---
maxdepth: 2
caption: "More:"
---
code

License

This software may be redistributed under the same license as Sphinx.

:lang: text

Copyright Hubert Chathi <hubert@uhoreg.ca>

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

SPDX-License-Identifier: BSD-2-Clause

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

literate_sphinx-0.1.4.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

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

literate_sphinx-0.1.4-py2.py3-none-any.whl (9.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file literate_sphinx-0.1.4.tar.gz.

File metadata

  • Download URL: literate_sphinx-0.1.4.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for literate_sphinx-0.1.4.tar.gz
Algorithm Hash digest
SHA256 0118e36f6a8b19ff68aec91263d949f0fecb05caee5c963d542bf6c06ace22e9
MD5 ba5f5ae21588f1cade9b1396af1ad117
BLAKE2b-256 56f64698fd9395a82d8f6e5a974211b1f2bf774ca77ced16aca8a7aca467bbaf

See more details on using hashes here.

File details

Details for the file literate_sphinx-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for literate_sphinx-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c8eda5710232e3ad5310f66dd993a8c4cf70eaa58802e32382ccd5792101137e
MD5 b4042598278f6a1a22d74da24ddfe7f5
BLAKE2b-256 febb7d3dbc0f2e596901c148e8ed136a00a754a2471a60aeb46a649022a17c3a

See more details on using hashes here.

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