module Jekyll::HeaderLink
Public Instance Methods
header_link(input)
click to toggle source
# File _plugins/header_link.rb, line 7 def header_link(input) return if input.nil? if input =~ /\A#{URI::regexp(['http', 'https'])}\z/ input else relative_url(input) end end