├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── composer.json ├── css └── testsuite.css ├── interface.js ├── package.json └── tests ├── microformats-mixed ├── h-card │ ├── change-log.html │ ├── mixedproperties.html │ ├── mixedproperties.json │ ├── tworoots.html │ └── tworoots.json ├── h-entry │ ├── change-log.html │ ├── mixedroots.html │ └── mixedroots.json └── h-resume │ ├── change-log.html │ ├── mixedroots.html │ └── mixedroots.json ├── microformats-v1 ├── adr │ ├── change-log.html │ ├── simpleproperties.html │ └── simpleproperties.json ├── geo │ ├── abbrpattern.html │ ├── abbrpattern.json │ ├── change-log.1.html │ ├── change-log.html │ ├── hidden.html │ ├── hidden.json │ ├── simpleproperties.html │ ├── simpleproperties.json │ ├── valuetitleclass.html │ └── valuetitleclass.json ├── hcalendar │ ├── ampm.html │ ├── ampm.json │ ├── attendees.html │ ├── attendees.json │ ├── change-log.html │ ├── combining.html │ ├── combining.json │ ├── concatenate.html │ ├── concatenate.json │ ├── time.html │ └── time.json ├── hcard │ ├── change-log.html │ ├── email.html │ ├── email.json │ ├── format.html │ ├── format.json │ ├── hyperlinkedphoto.html │ ├── hyperlinkedphoto.json │ ├── justahyperlink.html │ ├── justahyperlink.json │ ├── justaname.html │ ├── justaname.json │ ├── multiple.html │ ├── multiple.json │ ├── name.html │ ├── name.json │ ├── single.html │ └── single.json ├── hentry │ ├── change-log.html │ ├── summarycontent.html │ └── summarycontent.json ├── hfeed │ ├── simple.html │ └── simple.json ├── hnews │ ├── all.html │ ├── all.json │ ├── change-log.html │ ├── minimum.html │ └── minimum.json ├── hproduct │ ├── aggregate.html │ ├── aggregate.json │ ├── change-log.html │ ├── simpleproperties.html │ └── simpleproperties.json ├── hresume │ ├── affiliation.html │ ├── affiliation.json │ ├── change-log.html │ ├── contact.html │ ├── contact.json │ ├── education.html │ ├── education.json │ ├── skill.html │ ├── skill.json │ ├── work.html │ └── work.json ├── hreview-aggregate │ ├── change-log.html │ ├── hcard.html │ ├── hcard.json │ ├── justahyperlink.html │ ├── justahyperlink.json │ ├── vevent.html │ └── vevent.json ├── hreview │ ├── change-log.html │ ├── item.html │ ├── item.json │ ├── vcard.html │ └── vcard.json └── includes │ ├── change-log.html │ ├── hcarditemref.html │ ├── hcarditemref.json │ ├── heventitemref.html │ ├── heventitemref.json │ ├── hyperlink.html │ ├── hyperlink.json │ ├── object.html │ ├── object.json │ ├── table.html │ └── table.json └── microformats-v2 ├── h-adr ├── change-log.html ├── geo.html ├── geo.json ├── geourl.html ├── geourl.json ├── justaname.html ├── justaname.json ├── lettercase.html ├── lettercase.json ├── simpleproperties.html └── simpleproperties.json ├── h-card ├── baseurl.html ├── baseurl.json ├── change-log.html ├── childimplied.html ├── childimplied.json ├── extendeddescription.html ├── extendeddescription.json ├── hcard.html ├── hcard.json ├── hyperlinkedphoto.html ├── hyperlinkedphoto.json ├── impliedname.html ├── impliedname.json ├── impliedphoto.html ├── impliedphoto.json ├── impliedurl.html ├── impliedurl.json ├── impliedurlempty.html ├── impliedurlempty.json ├── justahyperlink.html ├── justahyperlink.json ├── justaname.html ├── justaname.json ├── nested.html ├── nested.json ├── p-property.html ├── p-property.json ├── relativeurls.html ├── relativeurls.json ├── relativeurlsempty.html └── relativeurlsempty.json ├── h-entry ├── change-log.html ├── encoding.html ├── encoding.json ├── impliedname.html ├── impliedname.json ├── impliedvalue-nested.html ├── impliedvalue-nested.json ├── justahyperlink.html ├── justahyperlink.json ├── justaname.html ├── justaname.json ├── scriptstyletags.html ├── scriptstyletags.json ├── summarycontent.html ├── summarycontent.json ├── u-property.html ├── u-property.json ├── urlincontent.html └── urlincontent.json ├── h-event ├── ampm.html ├── ampm.json ├── attendees.html ├── attendees.json ├── change-log.html ├── combining.html ├── combining.json ├── concatenate.html ├── concatenate.json ├── dates.html ├── dates.json ├── dt-property.html ├── dt-property.json ├── justahyperlink.html ├── justahyperlink.json ├── justaname.html ├── justaname.json ├── time.html └── time.json ├── h-feed ├── implied-title.html ├── implied-title.json ├── simple.html └── simple.json ├── h-geo ├── abbrpattern.html ├── abbrpattern.json ├── altitude.html ├── altitude.json ├── change-log.html ├── hidden.html ├── hidden.json ├── justaname.html ├── justaname.json ├── simpleproperties.html ├── simpleproperties.json ├── valuetitleclass.html └── valuetitleclass.json ├── h-product ├── aggregate.html ├── aggregate.json ├── change-log.html ├── justahyperlink.html ├── justahyperlink.json ├── justaname.html ├── justaname.json ├── simpleproperties.html └── simpleproperties.json ├── h-recipe ├── all.html ├── all.json ├── change-log.html ├── minimum.html └── minimum.json ├── h-resume ├── affiliation.html ├── affiliation.json ├── change-log.html ├── contact.html ├── contact.json ├── education.html ├── education.json ├── justaname.html ├── justaname.json ├── skill.html ├── skill.json ├── work.html └── work.json ├── h-review-aggregate ├── change-log.html ├── hevent.html ├── hevent.json ├── justahyperlink.html ├── justahyperlink.json ├── simpleproperties.html └── simpleproperties.json ├── h-review ├── change-log.html ├── hyperlink.html ├── hyperlink.json ├── implieditem.html ├── implieditem.json ├── item.html ├── item.json ├── justaname.html ├── justaname.json ├── photo.html ├── photo.json ├── vcard.html └── vcard.json ├── mixed ├── change-log.html ├── id.html ├── id.json ├── ignoretemplate.html ├── ignoretemplate.json ├── vendorprefix.html ├── vendorprefix.json ├── vendorprefixproperty.html └── vendorprefixproperty.json └── rel ├── change-log.html ├── duplicate-rels.html ├── duplicate-rels.json ├── license.html ├── license.json ├── nofollow.html ├── nofollow.json ├── rel-urls.html ├── rel-urls.json ├── varying-text-duplicate-rels.html ├── varying-text-duplicate-rels.json ├── xfn-all.html ├── xfn-all.json ├── xfn-elsewhere.html └── xfn-elsewhere.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/app.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/composer.json -------------------------------------------------------------------------------- /css/testsuite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/css/testsuite.css -------------------------------------------------------------------------------- /interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/interface.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/package.json -------------------------------------------------------------------------------- /tests/microformats-mixed/h-card/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-card/change-log.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-card/mixedproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-card/mixedproperties.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-card/mixedproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-card/mixedproperties.json -------------------------------------------------------------------------------- /tests/microformats-mixed/h-card/tworoots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-card/tworoots.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-card/tworoots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-card/tworoots.json -------------------------------------------------------------------------------- /tests/microformats-mixed/h-entry/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-entry/change-log.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-entry/mixedroots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-entry/mixedroots.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-entry/mixedroots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-entry/mixedroots.json -------------------------------------------------------------------------------- /tests/microformats-mixed/h-resume/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-resume/change-log.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-resume/mixedroots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-resume/mixedroots.html -------------------------------------------------------------------------------- /tests/microformats-mixed/h-resume/mixedroots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-mixed/h-resume/mixedroots.json -------------------------------------------------------------------------------- /tests/microformats-v1/adr/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/adr/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/adr/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/adr/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v1/adr/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/adr/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v1/geo/abbrpattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/abbrpattern.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/abbrpattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/abbrpattern.json -------------------------------------------------------------------------------- /tests/microformats-v1/geo/change-log.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/change-log.1.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/hidden.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/hidden.json -------------------------------------------------------------------------------- /tests/microformats-v1/geo/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v1/geo/valuetitleclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/valuetitleclass.html -------------------------------------------------------------------------------- /tests/microformats-v1/geo/valuetitleclass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/geo/valuetitleclass.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/ampm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/ampm.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/ampm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/ampm.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/attendees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/attendees.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/attendees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/attendees.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/combining.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/combining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/combining.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/concatenate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/concatenate.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/concatenate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/concatenate.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/time.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcalendar/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcalendar/time.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/email.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/email.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/format.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/format.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/hyperlinkedphoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/hyperlinkedphoto.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/hyperlinkedphoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/hyperlinkedphoto.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/justaname.html: -------------------------------------------------------------------------------- 1 |

Frances Berriman

-------------------------------------------------------------------------------- /tests/microformats-v1/hcard/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/multiple.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/multiple.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/name.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/name.json -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/single.html -------------------------------------------------------------------------------- /tests/microformats-v1/hcard/single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hcard/single.json -------------------------------------------------------------------------------- /tests/microformats-v1/hentry/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hentry/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hentry/summarycontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hentry/summarycontent.html -------------------------------------------------------------------------------- /tests/microformats-v1/hentry/summarycontent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hentry/summarycontent.json -------------------------------------------------------------------------------- /tests/microformats-v1/hfeed/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hfeed/simple.html -------------------------------------------------------------------------------- /tests/microformats-v1/hfeed/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hfeed/simple.json -------------------------------------------------------------------------------- /tests/microformats-v1/hnews/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hnews/all.html -------------------------------------------------------------------------------- /tests/microformats-v1/hnews/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hnews/all.json -------------------------------------------------------------------------------- /tests/microformats-v1/hnews/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hnews/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hnews/minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hnews/minimum.html -------------------------------------------------------------------------------- /tests/microformats-v1/hnews/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hnews/minimum.json -------------------------------------------------------------------------------- /tests/microformats-v1/hproduct/aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hproduct/aggregate.html -------------------------------------------------------------------------------- /tests/microformats-v1/hproduct/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hproduct/aggregate.json -------------------------------------------------------------------------------- /tests/microformats-v1/hproduct/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hproduct/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hproduct/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hproduct/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v1/hproduct/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hproduct/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/affiliation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/affiliation.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/affiliation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/affiliation.json -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/contact.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/contact.json -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/education.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/education.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/education.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/education.json -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/skill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/skill.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/skill.json -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/work.html -------------------------------------------------------------------------------- /tests/microformats-v1/hresume/work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hresume/work.json -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/hcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/hcard.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/hcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/hcard.json -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/vevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/vevent.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview-aggregate/vevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview-aggregate/vevent.json -------------------------------------------------------------------------------- /tests/microformats-v1/hreview/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview/item.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview/item.json -------------------------------------------------------------------------------- /tests/microformats-v1/hreview/vcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview/vcard.html -------------------------------------------------------------------------------- /tests/microformats-v1/hreview/vcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/hreview/vcard.json -------------------------------------------------------------------------------- /tests/microformats-v1/includes/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/hcarditemref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/hcarditemref.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/hcarditemref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/hcarditemref.json -------------------------------------------------------------------------------- /tests/microformats-v1/includes/heventitemref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/heventitemref.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/heventitemref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/heventitemref.json -------------------------------------------------------------------------------- /tests/microformats-v1/includes/hyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/hyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/hyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/hyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v1/includes/object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/object.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/object.json -------------------------------------------------------------------------------- /tests/microformats-v1/includes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/table.html -------------------------------------------------------------------------------- /tests/microformats-v1/includes/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v1/includes/table.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/geo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/geo.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/geo.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/geourl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/geourl.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/geourl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/geourl.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/justaname.html: -------------------------------------------------------------------------------- 1 |

665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A.

-------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/lettercase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/lettercase.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/lettercase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/lettercase.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-adr/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-adr/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/baseurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/baseurl.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/baseurl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/baseurl.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/childimplied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/childimplied.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/childimplied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/childimplied.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/extendeddescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/extendeddescription.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/extendeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/extendeddescription.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/hcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/hcard.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/hcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/hcard.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/hyperlinkedphoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/hyperlinkedphoto.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/hyperlinkedphoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/hyperlinkedphoto.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedname.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedphoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedphoto.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedphoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedphoto.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedurl.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedurl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedurl.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedurlempty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedurlempty.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/impliedurlempty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/impliedurlempty.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/justaname.html: -------------------------------------------------------------------------------- 1 |

Frances Berriman

-------------------------------------------------------------------------------- /tests/microformats-v2/h-card/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/nested.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/nested.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/p-property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/p-property.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/p-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/p-property.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/relativeurls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/relativeurls.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/relativeurls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/relativeurls.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/relativeurlsempty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/relativeurlsempty.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-card/relativeurlsempty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-card/relativeurlsempty.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/encoding.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/encoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/encoding.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/impliedname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/impliedname.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/impliedname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/impliedname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/impliedvalue-nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/impliedvalue-nested.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/impliedvalue-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/impliedvalue-nested.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/justaname.html: -------------------------------------------------------------------------------- 1 |

microformats.org at 7

-------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/scriptstyletags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/scriptstyletags.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/scriptstyletags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/scriptstyletags.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/summarycontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/summarycontent.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/summarycontent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/summarycontent.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/u-property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/u-property.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/u-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/u-property.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/urlincontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/urlincontent.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-entry/urlincontent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-entry/urlincontent.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/ampm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/ampm.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/ampm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/ampm.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/attendees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/attendees.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/attendees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/attendees.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/combining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/combining.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/combining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/combining.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/concatenate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/concatenate.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/concatenate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/concatenate.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/dates.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/dates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/dates.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/dt-property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/dt-property.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/dt-property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/dt-property.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/justaname.html: -------------------------------------------------------------------------------- 1 |

IndieWebCamp 2012

-------------------------------------------------------------------------------- /tests/microformats-v2/h-event/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/time.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-event/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-event/time.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-feed/implied-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-feed/implied-title.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-feed/implied-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-feed/implied-title.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-feed/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-feed/simple.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-feed/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-feed/simple.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/abbrpattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/abbrpattern.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/abbrpattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/abbrpattern.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/altitude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/altitude.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/altitude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/altitude.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/hidden.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/hidden.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/justaname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/justaname.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/valuetitleclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/valuetitleclass.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-geo/valuetitleclass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-geo/valuetitleclass.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/aggregate.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/aggregate.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/justaname.html: -------------------------------------------------------------------------------- 1 |

Raspberry Pi

-------------------------------------------------------------------------------- /tests/microformats-v2/h-product/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-product/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-product/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-recipe/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-recipe/all.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-recipe/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-recipe/all.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-recipe/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-recipe/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-recipe/minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-recipe/minimum.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-recipe/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-recipe/minimum.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/affiliation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/affiliation.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/affiliation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/affiliation.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/contact.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/contact.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/education.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/education.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/education.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/education.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/justaname.html: -------------------------------------------------------------------------------- 1 |

Tim Berners-Lee, invented the World Wide Web.

-------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/skill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/skill.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/skill.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/work.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-resume/work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-resume/work.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/hevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/hevent.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/hevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/hevent.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/justahyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/justahyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/justahyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/justahyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/simpleproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/simpleproperties.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review-aggregate/simpleproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review-aggregate/simpleproperties.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/hyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/hyperlink.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/hyperlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/hyperlink.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/implieditem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/implieditem.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/implieditem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/implieditem.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/item.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/item.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/justaname.html: -------------------------------------------------------------------------------- 1 |

Crepes on Cole

-------------------------------------------------------------------------------- /tests/microformats-v2/h-review/justaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/justaname.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/photo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/photo.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/photo.json -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/vcard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/vcard.html -------------------------------------------------------------------------------- /tests/microformats-v2/h-review/vcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/h-review/vcard.json -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/id.html -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/id.json -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/ignoretemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/ignoretemplate.html -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/ignoretemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/ignoretemplate.json -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/vendorprefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/vendorprefix.html -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/vendorprefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/vendorprefix.json -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/vendorprefixproperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/vendorprefixproperty.html -------------------------------------------------------------------------------- /tests/microformats-v2/mixed/vendorprefixproperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/mixed/vendorprefixproperty.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/change-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/change-log.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/duplicate-rels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/duplicate-rels.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/duplicate-rels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/duplicate-rels.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/license.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/license.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/nofollow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/nofollow.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/nofollow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/nofollow.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/rel-urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/rel-urls.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/rel-urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/rel-urls.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/varying-text-duplicate-rels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/varying-text-duplicate-rels.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/varying-text-duplicate-rels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/varying-text-duplicate-rels.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/xfn-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/xfn-all.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/xfn-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/xfn-all.json -------------------------------------------------------------------------------- /tests/microformats-v2/rel/xfn-elsewhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/xfn-elsewhere.html -------------------------------------------------------------------------------- /tests/microformats-v2/rel/xfn-elsewhere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microformats/tests/HEAD/tests/microformats-v2/rel/xfn-elsewhere.json --------------------------------------------------------------------------------