diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/RST.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/RST.hs b/src/Text/Pandoc/Readers/RST.hs index 105d27088..8875fdebe 100644 --- a/src/Text/Pandoc/Readers/RST.hs +++ b/src/Text/Pandoc/Readers/RST.hs @@ -695,7 +695,7 @@ directive' = do do bod <- parseFromString' parseBlocks $ top ++ "\n\n" ++ body' let lab = case label of "admonition" -> mempty - (l:ls) -> B.divWith ("",["admonition-title"],[]) + (l:ls) -> B.divWith ("",["title"],[]) (B.para (B.str (toUpper l : ls))) [] -> mempty return $ B.divWith (name,label:classes,keyvals) (lab <> bod) |