Home
Softono

Hexo Filter Nofollow

Open source MIT JavaScript
46
Stars
5
Forks
8
Issues
4
Watchers
1 year
Last Commit

 About Hexo Filter Nofollow

Add nofollow attribute to all external links automatically.

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing Hexo Filter Nofollow?

We provide expert installation service for this software. Our team will install, configure, and secure Hexo Filter Nofollow on your server. plans start at just $30.

Hexo Filter Nofollow

View on GitHub

hexo-filter-nofollow

npm version npm license build status npm download

Add nofollow attribute to all external links automatically.

hexo-filter-nofollow add rel="noopener external nofollow noreferrer" to all external links for security, privacy and SEO. Read more.

Installations

$ npm i hexo-filter-nofollow --save

Options

nofollow:
  enable: true
  field: site
  exclude:
    - 'exclude1.com'
    - 'exclude2.com'
  • enable - Enable the plugin. Default value is true.
  • field - The scope you want the plugin to proceed, can be 'site' or 'post'. Default value is site.
    • 'post' - Only add nofollow attribute to external links in your post content
    • 'site' - Add nofollow attribute to external links of whole sites
  • exclude - Exclude hostname. Specify subdomain when applicable, including www.
    • 'exclude1.com' does not apply to www.exclude1.com nor en.exclude1.com.