mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
As conf.py has now numfig = True, needed to modify accordingly test for links in html output. This topic branch fixes #2405, #2414, and also makes for latex(pdf) functional hyperlinks to named references, but only for literal blocks (code-block or literalinclude). modified: tests/roots/test-directive-code/caption.rst modified: tests/roots/test-directive-code/conf.py new file: tests/roots/test-directive-code/namedblocks.rst modified: tests/test_directive_code.py
29 lines
421 B
ReStructuredText
29 lines
421 B
ReStructuredText
Named Blocks
|
|
============
|
|
|
|
References to named blocks
|
|
--------------------------
|
|
|
|
See :ref:`the ruby code <some ruby code>` and
|
|
also :ref:`the python code <some python code>`.
|
|
|
|
|
|
Named Code block
|
|
----------------
|
|
|
|
.. code-block:: ruby
|
|
:name: some ruby code
|
|
|
|
def ruby?
|
|
false
|
|
end
|
|
|
|
|
|
Named Literal Include
|
|
---------------------
|
|
|
|
.. literalinclude:: literal.inc
|
|
:language: python
|
|
:name: some python code
|
|
|