muflax65ngodyewp.onion/lib/markdown_link_check.rb

15 lines
285 B
Ruby

class MarkdownLinkCheck < Nanoc::Filter
identifier :markdown_link_check
def run(content, params={})
content.each_line do |line|
if line =~ /\[^?.+?\]\[.*?\]/
puts "#{@item.identifier} -> #{line}"
raise "Unresolved link!"
end
end
end
end