diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-16 13:08:11 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-16 13:08:39 -0700 |
commit | 399c75da448dc0f90855b43ee44e9d7cf8009f1c (patch) | |
tree | b991c5babcb42425145ed73210c39a0a025e46dc | |
parent | 19591df739a6c50a3d0a9af55ba90b883264b21d (diff) | |
download | pandoc-399c75da448dc0f90855b43ee44e9d7cf8009f1c.tar.gz |
Revert "Shared: stringify now skips over footnotes."
This reverts commit 19591df739a6c50a3d0a9af55ba90b883264b21d.
This change didn't work; query has already written the contents
of the note by the time it gets to Note.
-rw-r--r-- | src/Text/Pandoc/Shared.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs index bf92601ef..72b467da5 100644 --- a/src/Text/Pandoc/Shared.hs +++ b/src/Text/Pandoc/Shared.hs @@ -391,7 +391,6 @@ stringify = query go go (Str x) = x go (Code _ x) = x go (Math _ x) = x - go (Note _) = "" go LineBreak = " " go _ = "" |