aboutsummaryrefslogtreecommitdiffstats
path: root/docs/mitmdump.rst
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-06-06 19:08:46 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-06-06 19:10:19 -0700
commit83f852298132ef6c3757cdc10a34f237a2df33ab (patch)
tree891a880b85d8ca06ffb07405464fd0c5745d78b7 /docs/mitmdump.rst
parent9a1cc166434a505a18e48501d96cb0081601f99e (diff)
downloadmitmproxy-83f852298132ef6c3757cdc10a34f237a2df33ab.tar.gz
mitmproxy-83f852298132ef6c3757cdc10a34f237a2df33ab.tar.bz2
mitmproxy-83f852298132ef6c3757cdc10a34f237a2df33ab.zip
docs: remove option directive
inserting " .. option::" tags create ugly markup, so we just ditch this entirely and continue using refs.
Diffstat (limited to 'docs/mitmdump.rst')
-rw-r--r--docs/mitmdump.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/mitmdump.rst b/docs/mitmdump.rst
index d9b4a26b..369bf0eb 100644
--- a/docs/mitmdump.rst
+++ b/docs/mitmdump.rst
@@ -7,7 +7,7 @@ mitmdump
**mitmdump** is the command-line companion to mitmproxy. It provides
tcpdump-like functionality to let you view, record, and programmatically
-transform HTTP traffic. See the :option:`--help` flag output for complete
+transform HTTP traffic. See the ``--help`` flag output for complete
documentation.
@@ -28,7 +28,7 @@ Filtering saved traffic
>>> mitmdump -nr infile -w outfile "~m post"
-Start mitmdump without binding to the proxy port (:option:`-n`), read all flows from
+Start mitmdump without binding to the proxy port (``-n``), read all flows from
infile, apply the specified filter expression (only match POSTs), and write to
outfile.
@@ -38,8 +38,8 @@ Client replay
>>> mitmdump -nc outfile
-Start mitmdump without binding to the proxy port (:option:`-n`), then replay all
-requests from outfile (:option:`-c filename`). Flags combine in the obvious way, so
+Start mitmdump without binding to the proxy port (``-n``), then replay all
+requests from outfile (``-c filename``). Flags combine in the obvious way, so
you can replay requests from one file, and write the resulting flows to
another: