1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-26 10:26:48 +02:00
muflax65ngodyewp.onion/lib/markdown_link_check.rb
2012-06-25 13:25:57 +02:00

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