mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 16:58:03 +00:00
32 lines
787 B
Ruby
32 lines
787 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'uri'
|
|
|
|
class GitHubLinkInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
|
|
use_dsl
|
|
|
|
named :github
|
|
name_positional_attributes 'caption'
|
|
|
|
def process(parent, target, attrs)
|
|
doc = parent.document
|
|
|
|
text = attrs['caption'] || target
|
|
uri = URI.parse %(https://github.com/#{target})
|
|
|
|
if attrs.key? 'issue'
|
|
uri.path += %(/issues/#{attrs['issue']})
|
|
text << "##{attrs['issue']}" if text == target
|
|
else
|
|
uri.path += %(/tree/#{attrs['rev']}) if attrs.key? 'rev'
|
|
uri.path += %(/#{attrs['path']}) if attrs.key? 'path'
|
|
text << "@#{attrs['rev']}" if text == target
|
|
end
|
|
|
|
target = uri.to_s
|
|
|
|
doc.register :links, target
|
|
create_anchor parent, text, type: :link, target: target
|
|
end
|
|
end
|