├── .coveralls.yml ├── .env ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── Makefile ├── README.md ├── app.js ├── index.js ├── lib ├── domutils.js ├── index.js ├── url.js └── version.js ├── license.txt ├── package.json ├── static ├── count.html ├── css │ ├── bootstrap.v4.0.0-6.css │ ├── mocha-custom.css │ ├── mocha.css │ ├── prettify.css │ └── testrunner.css ├── images │ ├── logo.gif │ └── photo.gif ├── javascript │ ├── DOMParser.js │ ├── beautify.js │ ├── bootstrap.v4.0.0-6.js │ ├── chai.js │ ├── count.js │ ├── data.js │ ├── deep-diff-0.3.1.min.js │ ├── mocha.js │ ├── parse.js │ ├── prettify.js │ └── testrunner.js ├── parse.html └── testrunner.html ├── templates └── index.html ├── test ├── README.md ├── helper.js ├── interface-count-test.js ├── interface-get-test.js ├── interface-hasMicroformats-test.js ├── interface-isMicroformat-test.js ├── mf-mixed-h-card-mixedpropertries.js ├── mf-mixed-h-card-tworoots.js ├── mf-mixed-h-entry-mixedroots.js ├── mf-mixed-h-resume-mixedroots.js ├── mf-v1-adr-simpleproperties.js ├── mf-v1-geo-abbrpattern.js ├── mf-v1-geo-hidden.js ├── mf-v1-geo-simpleproperties.js ├── mf-v1-geo-valuetitleclass.js ├── mf-v1-hcalendar-ampm.js ├── mf-v1-hcalendar-attendees.js ├── mf-v1-hcalendar-combining.js ├── mf-v1-hcalendar-concatenate.js ├── mf-v1-hcalendar-time.js ├── mf-v1-hcard-email.js ├── mf-v1-hcard-format.js ├── mf-v1-hcard-hyperlinkedphoto.js ├── mf-v1-hcard-justahyperlink.js ├── mf-v1-hcard-justaname.js ├── mf-v1-hcard-multiple.js ├── mf-v1-hcard-name.js ├── mf-v1-hcard-single.js ├── mf-v1-hentry-summarycontent.js ├── mf-v1-hfeed-simple.js ├── mf-v1-hnews-all.js ├── mf-v1-hnews-minimum.js ├── mf-v1-hproduct-aggregate.js ├── mf-v1-hproduct-simpleproperties.js ├── mf-v1-hresume-affiliation.js ├── mf-v1-hresume-contact.js ├── mf-v1-hresume-education.js ├── mf-v1-hresume-skill.js ├── mf-v1-hresume-work.js ├── mf-v1-hreview-aggregate-hcard.js ├── mf-v1-hreview-aggregate-justahyperlink.js ├── mf-v1-hreview-aggregate-vevent.js ├── mf-v1-hreview-item.js ├── mf-v1-hreview-vcard.js ├── mf-v1-includes-hcarditemref.js ├── mf-v1-includes-heventitemref.js ├── mf-v1-includes-hyperlink.js ├── mf-v1-includes-object.js ├── mf-v1-includes-table.js ├── mf-v2-h-adr-geo.js ├── mf-v2-h-adr-geourl.js ├── mf-v2-h-adr-justaname.js ├── mf-v2-h-adr-lettercase.js ├── mf-v2-h-adr-simpleproperties.js ├── mf-v2-h-as-note-note.js ├── mf-v2-h-card-baseurl.js ├── mf-v2-h-card-childimplied.js ├── mf-v2-h-card-extendeddescription.js ├── mf-v2-h-card-hcard.js ├── mf-v2-h-card-horghcard.js ├── mf-v2-h-card-hyperlinkedphoto.js ├── mf-v2-h-card-impliedname.js ├── mf-v2-h-card-impliedphoto.js ├── mf-v2-h-card-impliedurl.js ├── mf-v2-h-card-justahyperlink.js ├── mf-v2-h-card-justaname.js ├── mf-v2-h-card-nested.js ├── mf-v2-h-card-p-property.js ├── mf-v2-h-card-relativeurls.js ├── mf-v2-h-entry-encoding.js ├── mf-v2-h-entry-impliedvalue-nested.js ├── mf-v2-h-entry-justahyperlink.js ├── mf-v2-h-entry-justaname.js ├── mf-v2-h-entry-scriptstyletags.js ├── mf-v2-h-entry-summarycontent.js ├── mf-v2-h-entry-u-property.js ├── mf-v2-h-entry-urlincontent.js ├── mf-v2-h-event-ampm.js ├── mf-v2-h-event-attendees.js ├── mf-v2-h-event-combining.js ├── mf-v2-h-event-concatenate.js ├── mf-v2-h-event-dates.js ├── mf-v2-h-event-dt-property.js ├── mf-v2-h-event-justahyperlink.js ├── mf-v2-h-event-justaname.js ├── mf-v2-h-event-time.js ├── mf-v2-h-feed-implied-title.js ├── mf-v2-h-feed-simple.js ├── mf-v2-h-geo-abbrpattern.js ├── mf-v2-h-geo-altitude.js ├── mf-v2-h-geo-hidden.js ├── mf-v2-h-geo-justaname.js ├── mf-v2-h-geo-simpleproperties.js ├── mf-v2-h-geo-valuetitleclass.js ├── mf-v2-h-news-all.js ├── mf-v2-h-news-minimum.js ├── mf-v2-h-org-hyperlink.js ├── mf-v2-h-org-simple.js ├── mf-v2-h-org-simpleproperties.js ├── mf-v2-h-product-aggregate.js ├── mf-v2-h-product-justahyperlink.js ├── mf-v2-h-product-justaname.js ├── mf-v2-h-product-simpleproperties.js ├── mf-v2-h-recipe-all.js ├── mf-v2-h-recipe-minimum.js ├── mf-v2-h-resume-affiliation.js ├── mf-v2-h-resume-contact.js ├── mf-v2-h-resume-education.js ├── mf-v2-h-resume-justaname.js ├── mf-v2-h-resume-skill.js ├── mf-v2-h-resume-work.js ├── mf-v2-h-review-aggregate-hevent.js ├── mf-v2-h-review-aggregate-justahyperlink.js ├── mf-v2-h-review-aggregate-simpleproperties.js ├── mf-v2-h-review-hyperlink.js ├── mf-v2-h-review-implieditem.js ├── mf-v2-h-review-item.js ├── mf-v2-h-review-justaname.js ├── mf-v2-h-review-photo.js ├── mf-v2-h-review-vcard.js ├── mf-v2-rel-duplicate-rels.js ├── mf-v2-rel-license.js ├── mf-v2-rel-nofollow.js ├── mf-v2-rel-rel-urls.js ├── mf-v2-rel-varying-text-duplicate-rels.js ├── mf-v2-rel-xfn-all.js └── mf-v2-rel-xfn-elsewhere.js ├── update-test.js └── wrap ├── wrap-end.js └── wrap-start.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: te5NwCnsvRCa3mQiM5xFVLS7Do9V8qlKj -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/app.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /lib/domutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/lib/domutils.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/lib/url.js -------------------------------------------------------------------------------- /lib/version.js: -------------------------------------------------------------------------------- 1 | modules.version = '2.0.4'; -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/package.json -------------------------------------------------------------------------------- /static/count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/count.html -------------------------------------------------------------------------------- /static/css/bootstrap.v4.0.0-6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/css/bootstrap.v4.0.0-6.css -------------------------------------------------------------------------------- /static/css/mocha-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/css/mocha-custom.css -------------------------------------------------------------------------------- /static/css/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/css/mocha.css -------------------------------------------------------------------------------- /static/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/css/prettify.css -------------------------------------------------------------------------------- /static/css/testrunner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/css/testrunner.css -------------------------------------------------------------------------------- /static/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/images/logo.gif -------------------------------------------------------------------------------- /static/images/photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/images/photo.gif -------------------------------------------------------------------------------- /static/javascript/DOMParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/DOMParser.js -------------------------------------------------------------------------------- /static/javascript/beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/beautify.js -------------------------------------------------------------------------------- /static/javascript/bootstrap.v4.0.0-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/bootstrap.v4.0.0-6.js -------------------------------------------------------------------------------- /static/javascript/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/chai.js -------------------------------------------------------------------------------- /static/javascript/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/count.js -------------------------------------------------------------------------------- /static/javascript/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/data.js -------------------------------------------------------------------------------- /static/javascript/deep-diff-0.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/deep-diff-0.3.1.min.js -------------------------------------------------------------------------------- /static/javascript/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/mocha.js -------------------------------------------------------------------------------- /static/javascript/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/parse.js -------------------------------------------------------------------------------- /static/javascript/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/prettify.js -------------------------------------------------------------------------------- /static/javascript/testrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/javascript/testrunner.js -------------------------------------------------------------------------------- /static/parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/parse.html -------------------------------------------------------------------------------- /static/testrunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/static/testrunner.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/templates/index.html -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/README.md -------------------------------------------------------------------------------- /test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/helper.js -------------------------------------------------------------------------------- /test/interface-count-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/interface-count-test.js -------------------------------------------------------------------------------- /test/interface-get-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/interface-get-test.js -------------------------------------------------------------------------------- /test/interface-hasMicroformats-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/interface-hasMicroformats-test.js -------------------------------------------------------------------------------- /test/interface-isMicroformat-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/interface-isMicroformat-test.js -------------------------------------------------------------------------------- /test/mf-mixed-h-card-mixedpropertries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-mixed-h-card-mixedpropertries.js -------------------------------------------------------------------------------- /test/mf-mixed-h-card-tworoots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-mixed-h-card-tworoots.js -------------------------------------------------------------------------------- /test/mf-mixed-h-entry-mixedroots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-mixed-h-entry-mixedroots.js -------------------------------------------------------------------------------- /test/mf-mixed-h-resume-mixedroots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-mixed-h-resume-mixedroots.js -------------------------------------------------------------------------------- /test/mf-v1-adr-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-adr-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v1-geo-abbrpattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-geo-abbrpattern.js -------------------------------------------------------------------------------- /test/mf-v1-geo-hidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-geo-hidden.js -------------------------------------------------------------------------------- /test/mf-v1-geo-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-geo-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v1-geo-valuetitleclass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-geo-valuetitleclass.js -------------------------------------------------------------------------------- /test/mf-v1-hcalendar-ampm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcalendar-ampm.js -------------------------------------------------------------------------------- /test/mf-v1-hcalendar-attendees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcalendar-attendees.js -------------------------------------------------------------------------------- /test/mf-v1-hcalendar-combining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcalendar-combining.js -------------------------------------------------------------------------------- /test/mf-v1-hcalendar-concatenate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcalendar-concatenate.js -------------------------------------------------------------------------------- /test/mf-v1-hcalendar-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcalendar-time.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-email.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-format.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-hyperlinkedphoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-hyperlinkedphoto.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-justaname.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-multiple.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-name.js -------------------------------------------------------------------------------- /test/mf-v1-hcard-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hcard-single.js -------------------------------------------------------------------------------- /test/mf-v1-hentry-summarycontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hentry-summarycontent.js -------------------------------------------------------------------------------- /test/mf-v1-hfeed-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hfeed-simple.js -------------------------------------------------------------------------------- /test/mf-v1-hnews-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hnews-all.js -------------------------------------------------------------------------------- /test/mf-v1-hnews-minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hnews-minimum.js -------------------------------------------------------------------------------- /test/mf-v1-hproduct-aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hproduct-aggregate.js -------------------------------------------------------------------------------- /test/mf-v1-hproduct-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hproduct-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v1-hresume-affiliation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hresume-affiliation.js -------------------------------------------------------------------------------- /test/mf-v1-hresume-contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hresume-contact.js -------------------------------------------------------------------------------- /test/mf-v1-hresume-education.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hresume-education.js -------------------------------------------------------------------------------- /test/mf-v1-hresume-skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hresume-skill.js -------------------------------------------------------------------------------- /test/mf-v1-hresume-work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hresume-work.js -------------------------------------------------------------------------------- /test/mf-v1-hreview-aggregate-hcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hreview-aggregate-hcard.js -------------------------------------------------------------------------------- /test/mf-v1-hreview-aggregate-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hreview-aggregate-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v1-hreview-aggregate-vevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hreview-aggregate-vevent.js -------------------------------------------------------------------------------- /test/mf-v1-hreview-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hreview-item.js -------------------------------------------------------------------------------- /test/mf-v1-hreview-vcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-hreview-vcard.js -------------------------------------------------------------------------------- /test/mf-v1-includes-hcarditemref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-includes-hcarditemref.js -------------------------------------------------------------------------------- /test/mf-v1-includes-heventitemref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-includes-heventitemref.js -------------------------------------------------------------------------------- /test/mf-v1-includes-hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-includes-hyperlink.js -------------------------------------------------------------------------------- /test/mf-v1-includes-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-includes-object.js -------------------------------------------------------------------------------- /test/mf-v1-includes-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v1-includes-table.js -------------------------------------------------------------------------------- /test/mf-v2-h-adr-geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-adr-geo.js -------------------------------------------------------------------------------- /test/mf-v2-h-adr-geourl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-adr-geourl.js -------------------------------------------------------------------------------- /test/mf-v2-h-adr-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-adr-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-adr-lettercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-adr-lettercase.js -------------------------------------------------------------------------------- /test/mf-v2-h-adr-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-adr-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v2-h-as-note-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-as-note-note.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-baseurl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-baseurl.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-childimplied.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-childimplied.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-extendeddescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-extendeddescription.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-hcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-hcard.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-horghcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-horghcard.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-hyperlinkedphoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-hyperlinkedphoto.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-impliedname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-impliedname.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-impliedphoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-impliedphoto.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-impliedurl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-impliedurl.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-nested.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-p-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-p-property.js -------------------------------------------------------------------------------- /test/mf-v2-h-card-relativeurls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-card-relativeurls.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-encoding.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-impliedvalue-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-impliedvalue-nested.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-scriptstyletags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-scriptstyletags.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-summarycontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-summarycontent.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-u-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-u-property.js -------------------------------------------------------------------------------- /test/mf-v2-h-entry-urlincontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-entry-urlincontent.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-ampm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-ampm.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-attendees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-attendees.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-combining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-combining.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-concatenate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-concatenate.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-dates.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-dt-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-dt-property.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-event-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-event-time.js -------------------------------------------------------------------------------- /test/mf-v2-h-feed-implied-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-feed-implied-title.js -------------------------------------------------------------------------------- /test/mf-v2-h-feed-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-feed-simple.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-abbrpattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-abbrpattern.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-altitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-altitude.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-hidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-hidden.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v2-h-geo-valuetitleclass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-geo-valuetitleclass.js -------------------------------------------------------------------------------- /test/mf-v2-h-news-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-news-all.js -------------------------------------------------------------------------------- /test/mf-v2-h-news-minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-news-minimum.js -------------------------------------------------------------------------------- /test/mf-v2-h-org-hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-org-hyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-org-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-org-simple.js -------------------------------------------------------------------------------- /test/mf-v2-h-org-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-org-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v2-h-product-aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-product-aggregate.js -------------------------------------------------------------------------------- /test/mf-v2-h-product-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-product-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-product-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-product-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-product-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-product-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v2-h-recipe-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-recipe-all.js -------------------------------------------------------------------------------- /test/mf-v2-h-recipe-minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-recipe-minimum.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-affiliation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-affiliation.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-contact.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-education.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-education.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-skill.js -------------------------------------------------------------------------------- /test/mf-v2-h-resume-work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-resume-work.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-aggregate-hevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-aggregate-hevent.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-aggregate-justahyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-aggregate-justahyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-aggregate-simpleproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-aggregate-simpleproperties.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-hyperlink.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-implieditem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-implieditem.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-item.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-justaname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-justaname.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-photo.js -------------------------------------------------------------------------------- /test/mf-v2-h-review-vcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-h-review-vcard.js -------------------------------------------------------------------------------- /test/mf-v2-rel-duplicate-rels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-duplicate-rels.js -------------------------------------------------------------------------------- /test/mf-v2-rel-license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-license.js -------------------------------------------------------------------------------- /test/mf-v2-rel-nofollow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-nofollow.js -------------------------------------------------------------------------------- /test/mf-v2-rel-rel-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-rel-urls.js -------------------------------------------------------------------------------- /test/mf-v2-rel-varying-text-duplicate-rels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-varying-text-duplicate-rels.js -------------------------------------------------------------------------------- /test/mf-v2-rel-xfn-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-xfn-all.js -------------------------------------------------------------------------------- /test/mf-v2-rel-xfn-elsewhere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/test/mf-v2-rel-xfn-elsewhere.js -------------------------------------------------------------------------------- /update-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/update-test.js -------------------------------------------------------------------------------- /wrap/wrap-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/wrap/wrap-end.js -------------------------------------------------------------------------------- /wrap/wrap-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennjones/microformat-node/HEAD/wrap/wrap-start.js --------------------------------------------------------------------------------