Sha256: 23645bd2388f72e98f1650047917f6eeb61e513c73c0094300e828e92fd0c6be
Contents?: true
Size: 720 Bytes
Versions: 2
Compression:
Stored size: 720 Bytes
Contents
# -*- encoding: utf-8 -*- require 'uri' module Genit # Modify links. class BodyLinkBuilder < BuilderBase # Public: Relativize links. # # page_name - The string filename of the page. # # Returns the modified Nokogiri::XML::Document def build_for_page page_name build page_name, get_links end private def get_links @document.css("body a") end def update link @path = link['href'] return if not_an_internal_link? nb = BuilderBase::get_number_of_base_dirs @page_name make_relative nb link['href'] = @path end def not_an_internal_link? @path.nil? or @path =~ URI::regexp end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
genit-0.99 | lib/genit/builders/body_link_builder.rb |
genit-0.9 | lib/genit/builders/body_link_builder.rb |