aboutsummaryrefslogtreecommitdiffstats
path: root/guides/w3c_validator.rb
diff options
context:
space:
mode:
authorNate Berkopec <nate.berkopec@gmail.com>2013-10-27 15:14:41 -0400
committerNate Berkopec <nate.berkopec@gmail.com>2014-05-05 17:42:04 -0400
commit220528548b43b949a752ed9bcbc2f83fa6c75560 (patch)
treead2982b5fa9498f3209860ba36285196fe978824 /guides/w3c_validator.rb
parent4efb0f373047c44249bc6542fdf9969e4c63dd88 (diff)
downloadrails-220528548b43b949a752ed9bcbc2f83fa6c75560.tar.gz
rails-220528548b43b949a752ed9bcbc2f83fa6c75560.tar.bz2
rails-220528548b43b949a752ed9bcbc2f83fa6c75560.zip
Guides: output valid HTML5
[ci skip]
Diffstat (limited to 'guides/w3c_validator.rb')
-rw-r--r--guides/w3c_validator.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/w3c_validator.rb b/guides/w3c_validator.rb
index 6ef3df45a9..71f044b9c4 100644
--- a/guides/w3c_validator.rb
+++ b/guides/w3c_validator.rb
@@ -60,6 +60,8 @@ module RailsGuides
def guides_to_validate
guides = Dir["./output/*.html"]
guides.delete("./output/layout.html")
+ guides.delete("./output/_license.html")
+ guides.delete("./output/_welcome.html")
ENV.key?('ONLY') ? select_only(guides) : guides
end