diff options
author | makc | 2024-03-21 23:40:19 +0400 |
---|---|---|
committer | makc | 2024-03-21 23:40:19 +0400 |
commit | a4d9152855f4fd90fcd19e3250997d7ad0f3ef19 (patch) | |
tree | fa1a01bf24eb221f26df713d459afacdc8f4fcae /vnext/src | |
parent | e93941cbe41383963a007b32710c400b68051c27 (diff) |
support youtube shorts
Diffstat (limited to 'vnext/src')
-rw-r--r-- | vnext/src/utils/embed.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/utils/embed.js b/vnext/src/utils/embed.js index 59290227..7c1c5c3b 100644 --- a/vnext/src/utils/embed.js +++ b/vnext/src/utils/embed.js @@ -218,7 +218,7 @@ function getEmbeddableLinkTypes() { name: 'YouTube videos (and playlists)', id: 'embed_youtube_videos', className: 'youtube resizableV singleColumn', - re: /^(?:https?:)?\/\/(?:www\.|m\.|gaming\.)?(?:youtu(?:(?:\.be\/|be\.com\/(?:v|embed)\/)([-\w]+)|be\.com\/watch)((?:(?:\?|&(?:amp;)?)(?:\w+=[-.\w]*[-\w]))*)|youtube\.com\/playlist\?list=([-\w]*)(&(amp;)?[-\w?=]*)?)/i, + re: /^(?:https?:)?\/\/(?:www\.|m\.|gaming\.)?(?:youtu(?:(?:\.be\/|be\.com\/(?:v|embed|shorts)\/)([-\w]+)|be\.com\/watch)((?:(?:\?|&(?:amp;)?)(?:\w+=[-.\w]*[-\w]))*)|youtube\.com\/playlist\?list=([-\w]*)(&(amp;)?[-\w?=]*)?)/i, makeNode: function(aNode, reResult, div) { let [, v, args, plist] = reResult let iframeUrl |