diff --git a/BlogLiterately.cabal b/BlogLiterately.cabal
--- a/BlogLiterately.cabal
+++ b/BlogLiterately.cabal
@@ -1,5 +1,5 @@
 Name:           BlogLiterately
-Version:        0.7.1
+Version:        0.7.1.1
 Synopsis:       A tool for posting Haskelly articles to blogs
 Description:    Write blog posts in Markdown format, then use BlogLiterately
                 to do syntax highlighting, format ghci sessions, and upload
diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,8 @@
+0.7.1.1 (17 January 2014)
+-------------------------
+
+  * Bug fix: no table of contents is now actually the default, as advertised
+
 0.7.1 (14 January 2014)
 -----------------------
 
diff --git a/src/Text/BlogLiterately/Options.hs b/src/Text/BlogLiterately/Options.hs
--- a/src/Text/BlogLiterately/Options.hs
+++ b/src/Text/BlogLiterately/Options.hs
@@ -291,14 +291,14 @@
          &= help "don't highlight non-Haskell code"
        ]
      , _toc = enum
-       [ Just True
-         &= explicit
-         &= name "toc"
-         &= help "generate a table of contents"
-       , Just False
+       [ Just False
          &= explicit
          &= name "no-toc"
          &= help "don't generate a table of contents (default)"
+       , Just True
+         &= explicit
+         &= name "toc"
+         &= help "generate a table of contents"
        ]
      , _wplatex = def &= help "reformat inline LaTeX the way WordPress expects"
                   &= name "wplatex" &= name "w" &= explicit
