質問編集履歴
1
情報追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,3 +25,27 @@
|
|
25
25
|
これをreplaceを使い、再現したいのですが、上手くいきません。良い方法があれば教えていただきたいです。
|
26
26
|
|
27
27
|
よろしくお願いします。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
追加
|
34
|
+
|
35
|
+
```python
|
36
|
+
|
37
|
+
@register.filter
|
38
|
+
|
39
|
+
def youtube_embed_url(content):
|
40
|
+
|
41
|
+
return re.sub('https://youtu.be/[a-zA-Z0-9_]',
|
42
|
+
|
43
|
+
'<iframe width="560" height="315" src="https://www.youtube.com/embed/[a-zA-Z0-9_]" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>',
|
44
|
+
|
45
|
+
content)
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
正規表現を使い、URLから埋め込みコードへの変換を試みたのですが、うまく行かずに悩んでいます。
|