diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,13 @@
 # Changelog for commonmark-pandoc
 
+## 0.2.3
+
+- Track wikilinks with a class instead of the title (Evan
+  Silberman). The use of title="wikilink" in HTML output traces
+  back to Pandoc's hijacking of the title attribute for this purpose
+  back when Pandoc links didn't have Attrs. A coordinated change in
+  Pandoc moves this more appropriately into a class.
+
 ## 0.2.2.3
 
 - Avoid adding spurious extra data-pos attribute to wrapper
diff --git a/commonmark-pandoc.cabal b/commonmark-pandoc.cabal
--- a/commonmark-pandoc.cabal
+++ b/commonmark-pandoc.cabal
@@ -1,5 +1,5 @@
 name:           commonmark-pandoc
-version:        0.2.2.3
+version:        0.2.3
 synopsis:       Bridge between commonmark and pandoc AST.
 description:    This library provides typeclasses for rendering
                 commonmark to Pandoc types.
diff --git a/src/Commonmark/Pandoc.hs b/src/Commonmark/Pandoc.hs
--- a/src/Commonmark/Pandoc.hs
+++ b/src/Commonmark/Pandoc.hs
@@ -120,7 +120,7 @@
                   $ B.text t
 
 instance HasWikilinks (Cm b B.Inlines) where
-  wikilink t il = Cm $ B.link t "wikilink" $ unCm il
+  wikilink t il = Cm $ B.linkWith (mempty, ["wikilink"], mempty) t "" $ unCm il
 
 instance HasPipeTable (Cm a B.Inlines) (Cm a B.Blocks) where
   pipeTable aligns headerCells rows =
