From cbc2c15f0ffb1737a0f6540fb282adab7094423b Mon Sep 17 00:00:00 2001
From: Jesse Rosenthal <jrosenthal@jhu.edu>
Date: Wed, 22 Jun 2016 13:41:53 -0400
Subject: [PATCH] Shared: Add BlockQuote to blocksToInlines

---
 src/Text/Pandoc/Shared.hs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs
index 9153ec7e9..af81c49cd 100644
--- a/src/Text/Pandoc/Shared.hs
+++ b/src/Text/Pandoc/Shared.hs
@@ -1031,6 +1031,7 @@ blockToInlines (Plain ils) = ils
 blockToInlines (Para ils) = ils
 blockToInlines (CodeBlock attr str) = [Code attr str]
 blockToInlines (RawBlock fmt str) = [RawInline fmt str]
+blockToInlines (BlockQuote blks) = blocksToInlines blks
 blockToInlines (OrderedList _ blkslst) =
   concatMap blocksToInlines blkslst
 blockToInlines (BulletList blkslst) =