Using Sphinx, I know you can show a code snippet by having something like:
.. code-block:: ruby.
${your ruby code goes here}
How can I show a code snippet of terminal or shell commands not related to any languages? I don't care if they are not highlighted properly syntax wise, I just want them show up in the doc as a piece of code other than normal text.
Example
$ ls -lsa .
$ make file
.. code-block:: console
is meant for interactive sessions. Bash or sh didn't work for me.