0.0
No commit activity in last 3 years
No release in over 3 years
According to https://www.w3.org/TR/WCAG20-TECHS/H93.html, we should avoid duplicate id values on web pages, because there are "errors that are known to cause problems for assistive technologies when they are trying to parse content that has the same id attribute on different elements". Find Identical is a Ruby Gem that scans HTMLdocuments for duplicate ID attributes and list that on screen, helping to making sure the Web page does not have duplicate id values.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.11, >= 5.11.3
~> 1.8

Runtime

~> 1.3, >= 1.3.1
 Project Readme

Find Identical

Gem Version

According to https://www.w3.org/TR/WCAG20-TECHS/H93.html, we should avoid duplicate id values on web pages, because there are "errors that are known to cause problems for assistive technologies when they are trying to parse content that has the same id attribute on different elements". Find Identical is a Ruby Gem that scans HTML documents for duplicate ID attributes and list that on screen, helping to making sure the Web page does not have duplicate id values.

Usage

  • gem install find_identical
  • $ identical [/path/to/html or https://some-url]
  • Use a path to get duplicate ID's on file, before browser renderization.
  • Use a URL to get duplciate ID's after browser renderization.