diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 0.3.8.3
+
+-   [Fix] Pandoc 2.11.0.1 fixes the issue fixed in the previous release upstream.
+
+    Unfortunately, "double fix" is no fix at all. This release checks for pandoc version and disables the fix on our side as needed.
+
 ## 0.3.8.2
 
 -   [Fix] Escape LaTeX caption attribute when taken from Markdown
diff --git a/lib/Text/Pandoc/CrossRef/Util/Util.hs b/lib/Text/Pandoc/CrossRef/Util/Util.hs
--- a/lib/Text/Pandoc/CrossRef/Util/Util.hs
+++ b/lib/Text/Pandoc/CrossRef/Util/Util.hs
@@ -18,7 +18,7 @@
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 -}
 
-{-# LANGUAGE RankNTypes, OverloadedStrings #-}
+{-# LANGUAGE RankNTypes, OverloadedStrings, CPP #-}
 module Text.Pandoc.CrossRef.Util.Util
   ( module Text.Pandoc.CrossRef.Util.Util
   , module Data.Generics
@@ -33,6 +33,9 @@
 import Data.Generics
 import Text.Pandoc.Writers.LaTeX
 import Data.Default
+import Data.Version
+import Data.List (find)
+import Text.ParserCombinators.ReadP (readP_to_S)
 import qualified Data.Text as T
 
 intercalate' :: (Eq a, Monoid a, Foldable f) => a -> f a -> a
@@ -120,7 +123,10 @@
 escapeLaTeX l =
   let ll = either (error . show) id $
             runPure (writeLaTeX def $ Pandoc nullMeta [Plain [Str l]])
-  in ll
+      pv = fmap fst . find (null . snd) . readP_to_S parseVersion $ VERSION_pandoc
+      mv = makeVersion [2,11,0,1]
+      cond = maybe False (mv >=) pv
+  in if cond then ll else l
 
 getRefLabel :: T.Text -> [Inline] -> Maybe T.Text
 getRefLabel _ [] = Nothing
diff --git a/pandoc-crossref.cabal b/pandoc-crossref.cabal
--- a/pandoc-crossref.cabal
+++ b/pandoc-crossref.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: cf1ac7c0170023b09f559c841b981a19b613914459110ccb971ff6763f609b61
+-- hash: 39f79bf240895e159f195d272e9604b08b795a6bce6ce663305b8aee2189ab82
 
 name:           pandoc-crossref
-version:        0.3.8.2
+version:        0.3.8.3
 synopsis:       Pandoc filter for cross-references
 description:    pandoc-crossref is a pandoc filter for numbering figures, equations, tables and cross-references to them.
 category:       Text
