Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix: #540
<object>
<param>
<embed>
タグを使って記事中に埋め込もうとしたYouTubeが本番環境では全く表示されない状態になっていたのを修正しました。変更前だと、例えば以下のような記述は
ローカル環境では、以下のようなHTMLとして変換されていました。ローカルでは埋め込み表示、再生ともに問題なく動いています。
しかし本番環境ではこのようなHTMLになっていました。動作の再生も表示も何もされない状態でした。
この差分の要因は、ローカルでは本リポジトリを
bundle exec jekyll serve -I --future
で起動させるが、本番用にはbundle exec jekyll build
していることを踏まえると、jekyll側にコマンド間の挙動の差異があるのではないかと推測しています。修正方針としては、
*
<object>
タグ等の使い方が間違っているのであればそれを正すとか、他のタグを使うなどが考えられるという2点が浮かびました。このPRではるびま側を変更する方針で、具体的には
<iframe>
を利用することにしました。理由としは2つあります。
<iframe>
を使って本番環境でもYouTubeの埋め込み表示が成功してること、以下のようにローカルと本番での挙動差異がないことから、<iframe>
であれば記事中に使って問題ないと言えること<iframe>
を使ったHTMLが提示されるので、Google的には<iframe/>
が前提となっていると考えられること