Table of contents
Jekyll-target-blank
Tags:
, ,ページ、投稿などの外部リンクに`target="_blank"`を自動に追加するJekyllプラグイン
Jekyllのコンテンツ内のすべての外部リンクにtarget="_blank"
、 rel="noopener noreferrer"
属性を自動的に追加し、さらに外部リンクのために いくつかの自動化機能を追加します。
インストール
Gemfileを編集
# Gemfile group :jekyll_plugins do gem 'jekyll-target-blank' end
_config.ymlを編集
# _config.yml plugins: - jekyll-target-blank
Pluginのインストール
bundle
Examples
デフォルトでは、Jekyllの_config.ymlのURLとしてリストされているもの以外の、 外部ホストを指すすべてのアンカータグとマークダウンリンクは、 新しいブラウザタブで開かれます。
HTMLアンカータグ
<a href="https://google.com">Google</a>
デフォルトでは、以下のように置き替えられます。
<a href="https://google.com" target="_blank" rel="noopener noreferrer">Google</a>
Markdownリンク
[Google](https://google.com)
デフォルトでは、以下のように置き替えられます。
<a href="https://google.com" target="_blank" rel="noopener noreferrer">Google</a>
ブログ記事
下記に掲載を希望される方はご連絡ください (詳細)
- Jekyllで外部リンクアイコンを付ける (otti.xyz)