1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-02 01:08:03 +02:00
choosealicense.com/Rakefile
Aidan Feldman 49e50f6390 Don't ignore all '#' URLs when running HTML::Proofer
Explicitly ignore the clipboard button from proofing, which was why the
:href_ignore was there in the first place.  Per
https://github.com/github/choosealicense.com/pull/104/files#r7311111.
2013-12-18 03:28:01 -05:00

8 lines
172 B
Ruby

require "html/proofer"
task :test do
sh "bundle exec jekyll build --trace"
# ignore href="#" for the "Copy to clipboard" button
HTML::Proofer.new("./_site").run
end