diff --git a/wagtail/wagtailembeds/oembed_providers.py b/wagtail/wagtailembeds/oembed_providers.py index e60c3e5d7c..bc944f9bde 100644 --- a/wagtail/wagtailembeds/oembed_providers.py +++ b/wagtail/wagtailembeds/oembed_providers.py @@ -291,7 +291,12 @@ OEMBED_ENDPOINTS = { ], "http://www.ifttt.com/oembed/": [ "^http(?:s)?://ifttt\\.com/recipes/.+$" - ] + ], + + # Added 11th December 2014 - http://developers.issuu.com/api/oembed.html + "http://issuu.com/oembed": [ + "^http(?:s)?://(?:www\\.)?issuu\\.com/[^#?/]+/docs/.+$" + ], }