mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
85 lines
1.7 KiB
Plaintext
85 lines
1.7 KiB
Plaintext
Testing downloadable files
|
|
==========================
|
|
|
|
Download :download:`img.png` here.
|
|
Download :download:`this <subdir/img.png>` there.
|
|
Don't download :download:`this <nonexisting.png>`.
|
|
|
|
Test file and literal inclusion
|
|
===============================
|
|
|
|
.. include:: subdir/include.inc
|
|
|
|
.. include:: /subdir/include.inc
|
|
|
|
.. literalinclude:: literal.inc
|
|
:language: python
|
|
|
|
.. should give a warning
|
|
.. literalinclude:: wrongenc.inc
|
|
|
|
.. should succeed
|
|
.. literalinclude:: wrongenc.inc
|
|
:encoding: latin-1
|
|
.. include:: wrongenc.inc
|
|
:encoding: latin-1
|
|
|
|
Literalinclude options
|
|
======================
|
|
|
|
.. highlight:: text
|
|
|
|
.. cssclass:: inc-pyobj1
|
|
.. literalinclude:: literal.inc
|
|
:pyobject: Foo
|
|
|
|
.. cssclass:: inc-pyobj2
|
|
.. literalinclude:: literal.inc
|
|
:pyobject: Bar.baz
|
|
|
|
.. cssclass:: inc-lines
|
|
.. literalinclude:: literal.inc
|
|
:lines: 6-7,9
|
|
|
|
.. cssclass:: inc-startend
|
|
.. literalinclude:: literal.inc
|
|
:start-after: coding: utf-8
|
|
:end-before: class Foo
|
|
|
|
.. cssclass:: inc-preappend
|
|
.. literalinclude:: literal.inc
|
|
:prepend: START CODE
|
|
:append: END CODE
|
|
|
|
.. literalinclude:: literal.inc
|
|
:start-after: utf-8
|
|
|
|
.. literalinclude:: literal.inc
|
|
:end-before: class Foo
|
|
|
|
.. cssclass:: inc-tab3
|
|
.. literalinclude:: tabs.inc
|
|
:tab-width: 3
|
|
:language: text
|
|
|
|
.. cssclass:: inc-tab8
|
|
.. literalinclude:: tabs.inc
|
|
:tab-width: 8
|
|
:language: python
|
|
|
|
Test if dedenting before parsing works.
|
|
|
|
.. highlight:: python
|
|
|
|
.. cssclass:: inc-pyobj-dedent
|
|
.. literalinclude:: literal.inc
|
|
:pyobject: Bar.baz
|
|
|
|
Docutils include with "literal"
|
|
===============================
|
|
|
|
While not recommended, it should work (and leave quotes alone).
|
|
|
|
.. include:: quotes.inc
|
|
:literal:
|