discourse/lib/markdown_linker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
587 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
# Helps create links using markdown (where references are at the bottom)
class MarkdownLinker
def initialize(base_url)
@base_url = base_url
@index = 1
@markdown_links = {}
@rendered = 1
end
def create(title, url)
@markdown_links[@index] = url.start_with?(@base_url) ? url : "#{@base_url}#{url}"
2013-02-05 14:16:51 -05:00
result = "[#{title}][#{@index}]"
2013-02-25 11:42:20 -05:00
@index += 1
2013-02-05 14:16:51 -05:00
result
end
def references
result = +""
2013-08-21 13:12:41 -04:00
(@rendered..@index - 1).each { |i| result << "[#{i}]: #{@markdown_links[i]}\n" }
2013-02-05 14:16:51 -05:00
@rendered = @index
result
end
end