Skip to content

Commit

Permalink
add html check, fix duplicate IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Feb 10, 2015
1 parent d01ec01 commit 59b1f10
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ require "html/proofer"

task :test do
sh "bundle exec jekyll build"
HTML::Proofer.new("./_site/").run
HTML::Proofer.new("./_site/", {:check_html => true}).run
end
16 changes: 8 additions & 8 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -417,11 +417,11 @@ code {
/* VPAT */
/* -------------------------------------------------------------------------- */

table#accessibility tr th { text-align: center; vertical-align: middle; }
table#accessibility tr td.criterion {width: 40%; font-size: 13px;}
table#accessibility tr td.support { font-weight: bold; width: 15%; vertical-align: middle; text-align: center;}
table#accessibility tr td.supports { color: #6CC644; }
table#accessibility tr td.not-applicable { color: #999; }
table#accessibility tr td.supports-with-exceptions { color: #f93; }
table#accessibility tr td.does-not-support { color: #BD2C00; }
table#accessibility tr td.comments { width: 45%; vertical-align: middle; font-size: 13px; }
table.accessibility tr th { text-align: center; vertical-align: middle; }
table.accessibility tr td.criterion {width: 40%; font-size: 13px;}
table.accessibility tr td.support { font-weight: bold; width: 15%; vertical-align: middle; text-align: center;}
table.accessibility tr td.supports { color: #6CC644; }
table.accessibility tr td.not-applicable { color: #999; }
table.accessibility tr td.supports-with-exceptions { color: #f93; }
table.accessibility tr td.does-not-support { color: #BD2C00; }
table.accessibility tr td.comments { width: 45%; vertical-align: middle; font-size: 13px; }
2 changes: 1 addition & 1 deletion docs/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ Where support below is indicated below as "Supports with exceptions", such a qua
*Applicable product(s): {{ section[1].product }}*
{% endif %}

<table id="accessibility" class="table table-striped table-bordered table-condensed">
<table class="table table-striped table-bordered table-condensed accessibility">
<thead>
<tr>
<th>Criteria</th>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h3>IT without the paperwork</h3>

<div class="mini-section more-than">
<div class="container">
<h1 id="join-the-revolution">More than just code.</h1>
<h1 id="more-than-just-code">More than just code.</h1>
<h3>Agencies use GitHub to engage developers and collaborate with the public on open source, open data and open government efforts. GitHub even renders common formats like <a href="https://github.com/blog/1784-rendered-prose-diffs" target="_blank">text</a>, <a href="https://help.github.com/articles/rendering-csv-and-tsv-data" target="_blank">CSV</a>, and <a href="https://help.github.com/articles/mapping-geojson-files-on-github" target="_blank">geospatial data</a>.</h3>

<div class="row-fluid section source-data-code">
Expand Down
2 changes: 1 addition & 1 deletion script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

script/bootstrap
script/branding

export PATH=/usr/share/rbenv/shims:$PATH RBENV_VERSION=$(cat .ruby-version)

Expand Down

0 comments on commit 59b1f10

Please sign in to comment.