Merge branch 'master' of github.com:rennat/python-markdown-oembed

This commit is contained in:
J. Tanner Netterville 2014-07-22 15:55:00 -05:00
commit 8da615da30

View file

@ -4,13 +4,13 @@ import oembed
ENDPOINTS = {
'youtube': oembed.OEmbedEndpoint('http://www.youtube.com/oembed', [
'http://(*.)?youtube.com/*',
'http://youtu.be/*',
'https?://(*.)?youtube.com/*',
'https?://youtu.be/*',
]),
'flickr': oembed.OEmbedEndpoint('http://www.flickr.com/services/oembed/', [
'http://*.flickr.com/*',
'https?://*.flickr.com/*',
]),
'vimeo': oembed.OEmbedEndpoint('http://vimeo.com/api/oembed.json', [
'http://vimeo.com/*',
'https?://vimeo.com/*',
]),
}