mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 03:08:51 +01:00
49e50f6390
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.
8 lines
172 B
Ruby
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
|