1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
# sphinx-examples
A small Sphinx extension to create examples of source markup and the result of rendering it in your documentation.
This is useful if you wish to demonstrate the functionality of a new directive or role in Sphinx.
🚨**This is very alpha software**🚨: It is packaged primarily for convience and not heavily tested. Use at your own risk!
## Installation
You can install `sphinx-examples` with `pip`:
```bash
pip install sphinx-examples
```
## Usage
See [the `sphinx-examples` documentation](https://ebp-sphinx-examples.readthedocs.io/en/latest/) for more information.
## Develop
To develop this extension, follow these steps:
1. **Clone the repository locally**
```console
$ git clone https://github.com/executablebooks/sphinx-examples
$ cd sphinx-examples
```
2. **Install pre-commit hooks**
```console
$ pre-commit install
```
3. **Install development and documentation dependencies**
```console
$ pip install -e .[sphinx]
```
The codebase for this package is in `src/sphinx_examples`.
Documentation is in `docs/`.
This package has no testing infrastructure, so be careful when using it!
If it becomes more complex or with more features, we may add more testing around it in the future.
For not it is packaged for convenience and re-use across EBP repositories.
## Build the documentation
The documentation is currently not hosted anywhere, so if you'd like to preview the documentation "live", run the following command:
```console
pip install -e .[sphinx]
sphinx-build docs docs/_build/html
```
Then browse the HTML files in `docs/_build/html` to see the rendered documentation.
## Inspiration
This project takes heavy inspiration from the [Bootstrap v5 documenation](https://getbootstrap.com/docs/5.0/utilities/borders/#border).
|