mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
47 lines
940 B
Plaintext
47 lines
940 B
Plaintext
Test file and literal inclusion
|
|
===============================
|
|
|
|
.. 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
|
|
|
|
|
|
Testing downloadable files
|
|
==========================
|
|
|
|
Download :download:`img.png` here.
|
|
Download :download:`this <subdir/img.png>` there.
|
|
Don't download :download:`this <nonexisting.png>`.
|