Various examples of Bootstrap styling applied to Sphinx constructs. You can view the source of this page to see the specific reStructuredText used to create these examples.
This is a first level heading (h1).
The Sphinx Bootstrap Theme uses Bootstrap styling for inline code text and
multiline
code text
The Sphinx Bootstrap Theme uses the Bootstrap alert classes for Sphinx admonitions.
Note
This is a note.
Warning
This is a warning.
Here are some examples of Sphinx tables. The Sphinx Bootstrap Theme removes all Sphinx docutils classes and replaces them with the default Bootstrap table class. You can add additional table classes using the Sphinx cssclass:: directive, as demonstrated in the following tables.
A “bordered” grid table:
| Header1 | Header2 | Header3 | Header4 |
|---|---|---|---|
| row1, cell1 | cell2 | cell3 | cell4 |
| row2 ... | ... | ... | |
| ... | ... | ... |
which uses the directive:
.. cssclass:: table-bordered
A simple “striped” table:
| H1 | H2 | H3 |
|---|---|---|
| cell1 | cell2 | cell3 |
| ... | ... | ... |
| ... | ... | ... |
which uses the directive:
.. cssclass:: table-striped
And a “hoverable” table:
| H1 | H2 | H3 |
|---|---|---|
| cell1 | cell2 | cell3 |
| ... | ... | ... |
| ... | ... | ... |
which uses the directive:
.. cssclass:: table-hover