Code samples¶
Format code snippets as standalone literal blocks. There are several ways to define a code-block within an RST file.
Standard literal block¶
Directive |
|
Arguments |
none |
Options |
none |
Description |
|
Use ::
or code
directive if you provide the code snippets written
in one programming language within one file. By default, the code-block
formatted this way is shown in a Python highlighting mode.
To define another highlighting language, use the code-block
directive
as described in the Non-standard literal block section.
Input
Define get core::
def get_core_n():
vrouter_core_n = 0
dpdk_vrouter_pid = get_dpdk_vrouter_pid()
Output
Define get core:
def get_core_n():
vrouter_core_n = 0
dpdk_vrouter_pid = get_dpdk_vrouter_pid()
Non-standard literal block¶
Directive |
|
Arguments |
|
Options |
|
Description |
|
To optimize the output of code for a specific programming language, specify
the corresponding argument with code-block
. Use ini
for configuration
files, console
for console inputs and outputs, and so on.
Input
.. code-block:: ini
# Configuration for nova-rootwrap
# This file should be owned by (and only-writeable by) the root user
[DEFAULT]
# List of directories to load filter definitions from (separated by ',').
Output
# Configuration for nova-rootwrap
# This file should be owned by (and only-writeable by) the root user
[DEFAULT]
# List of directories to load filter definitions from (separated by ',').
Note
When you write the command example, you should write the input and output as it is from the console in one code block, not add an extra blank line, not split them into input block and output block. You can omit the output where appropriate.
Options of code-block directive¶
You can add line numbers to code examples with the :linenos:
parameter and
highlight some specific lines with the :emphasize-lines:
parameter:
Input
.. code-block:: python
:linenos:
:emphasize-lines: 3,5-6
def some_function():
interesting = False
print 'This line is highlighted.'
print 'This one is not...'
print '...but this one is.'
print 'This one is highlighted too.'
Output
1def some_function():
2 interesting = False
3 print 'This line is highlighted.'
4 print 'This one is not...'
5 print '...but this one is.'
6 print 'This one is highlighted too.'
This documentation, is a derivative of RST conventions by OpenStack, used under CC BY.