mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
25 lines
257 B
ReStructuredText
25 lines
257 B
ReStructuredText
|
test-directive-code
|
||
|
===================
|
||
|
|
||
|
.. toctree::
|
||
|
|
||
|
*
|
||
|
|
||
|
|
||
|
Code blocks
|
||
|
-----------
|
||
|
|
||
|
.. code-block:: ruby
|
||
|
:linenos:
|
||
|
|
||
|
def ruby?
|
||
|
false
|
||
|
end
|
||
|
|
||
|
|
||
|
Literal Includes
|
||
|
----------------
|
||
|
|
||
|
.. literalinclude:: literal.inc
|
||
|
:language: python
|