(PDOC-36) hack to fix README links in generated HTML

This commit is contained in:
Eric Putnam 2018-03-22 15:16:57 -07:00
parent 67f249c8ea
commit 37cfe49f95
No known key found for this signature in database
GPG Key ID: 3FB595AA224A7751
3 changed files with 33 additions and 1 deletions

View File

@ -54,7 +54,13 @@ def layout
@path = object.path
end
erb(:layout)
final_layout = erb(:layout)
if @file && @file.name == 'README'
PuppetStrings::Yard::Util.github_to_yard_links(final_layout)
end
final_layout
end
# Creates the dynamic menu lists.

View File

@ -14,4 +14,18 @@ module PuppetStrings::Yard::Util
Puppet::Util::Docs.scrub(str)
end
# hacksville, usa
# YARD creates ids in the html with with the style of "label-Module+description", where the markdown
# we use in the README involves the GitHub-style, which is #module-description. This takes our GitHub-style
# links and converts them to reference the YARD-style ids.
# @see https://github.com/octokit/octokit.rb/blob/0f13944e8dbb0210d1e266addd3335c6dc9fe36a/yard/default/layout/html/setup.rb#L5-L14
# @param [String] data HTML document to convert
# @return [String] HTML document with links converted
def self.github_to_yard_links(data)
data.scan(/href\=\"\#(.+)\"/).each do |bad_link|
data.gsub!(bad_link.first, "label-#{bad_link.first.capitalize.gsub('-', '+')}")
end
data
end
end

View File

@ -28,4 +28,16 @@ STR
expect(subject.scrub_string(str)).to eq('this is a test string')
end
end
describe 'github_to_yard_links' do
it 'converts a link correctly' do
str = '<a href="#module-description">'
expect(subject.github_to_yard_links(str)).to eq('<a href="#label-Module+description">')
end
it 'leaves other links with hashes alone' do
str = '<a href="www.github.com/blah/document.html#module-description">'
expect(subject.github_to_yard_links(str)).to eq(str)
end
end
end