diff options
| -rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index c5b6a6db2..d8b8384e7 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -855,13 +855,12 @@ inlineToHtml opts inline =      (Note contents)        | writerIgnoreNotes opts -> return mempty        | otherwise              -> do -                        st <- get -                        let notes = stNotes st +                        notes <- gets stNotes                          let number = (length notes) + 1                          let ref = show number                          htmlContents <- blockListToNote opts ref contents                          -- push contents onto front of notes -                        put $ st {stNotes = (htmlContents:notes)} +                        modify $ \st -> st {stNotes = (htmlContents:notes)}                          let revealSlash = ['/' | writerSlideVariant opts                                                   == RevealJsSlides]                          let link = H.a ! A.href (toValue $ "#" ++ | 
