File: examples.rst

package info (click to toggle)
sphinx-rst-builder 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 184 kB
  • sloc: python: 771; makefile: 17; sh: 6
file content (27 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Basic literal block:

::

   Some code block


Some Python Code:

.. code-block:: python
   :linenos:

   def foo():
       bar()

Some C++ code:

.. code-block:: c++

   class Foo {
       int i;
   };

Literalinclude:

.. literalinclude:: configuration.json
   :language: JSON