';
+ $parser = new Parser($input, 'https://example.com');
+ $output = $parser->parse();
+
+ $this->assertArrayHasKey('url', $output['items'][0]['properties']);
+ $this->assertEquals('https://example.com/index.html', $output['items'][0]['properties']['url'][0]);
+ }
}
diff --git a/vendor/mf2/mf2/tests/Mf2/ParserTest.php b/vendor/mf2/mf2/tests/Mf2/ParserTest.php
index f30e2bf..e0f96cc 100644
--- a/vendor/mf2/mf2/tests/Mf2/ParserTest.php
+++ b/vendor/mf2/mf2/tests/Mf2/ParserTest.php
@@ -173,7 +173,11 @@ public function testHtmlEncodesImpliedProperties() {
$this->assertEquals('', $output['items'][0]['properties']['name'][0]);
$this->assertEquals('', $output['items'][0]['properties']['url'][0]);
- $this->assertEquals('', $output['items'][0]['properties']['photo'][0]);
+ $result = [
+ 'value' => '',
+ 'alt' => ''
+ ];
+ $this->assertEquals($result, $output['items'][0]['properties']['photo'][0]);
}
public function testParsesRelValues() {
@@ -372,7 +376,7 @@ public function testApplyTransformationToSrcset() {
public function testRelativeURLResolvedWithFinalURL() {
$mf = Mf2\fetch('http://aaron.pk/4Zn5');
- $this->assertEquals('https://aaronparecki.com/2014/12/23/5/photo.jpeg', $mf['items'][0]['properties']['photo'][0]);
+ $this->assertEquals('https://aaronparecki.com/img/1240x0/2014/12/23/5/photo.jpeg', $mf['items'][0]['properties']['photo'][0]);
}
public function testScriptTagContentsRemovedFromTextValue() {
@@ -813,9 +817,9 @@ public function testNotMutatingPassedInDOM() {
// Use same parsing as Parser::__construct(), twice to have a comparison object.
libxml_use_internal_errors(true);
$refDoc = new \DOMDocument();
- @$refDoc->loadHTML(Mf2\unicodeToHtmlEntities($input));
+ @$refDoc->loadHTML(Mf2\unicodeToHtmlEntities($input), \LIBXML_NOWARNING);
$inputDoc = new \DOMDocument();
- @$inputDoc->loadHTML(Mf2\unicodeToHtmlEntities($input));
+ @$inputDoc->loadHTML(Mf2\unicodeToHtmlEntities($input), \LIBXML_NOWARNING);
// For completion sake, test PHP itself.
$this->assertEquals($refDoc, $inputDoc, 'PHP could not create identical DOMDocument instances.');
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/input.html
deleted file mode 100644
index 2f8bdf4..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A.
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/output.json
deleted file mode 100644
index b6e96ad..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-adr"],
- "properties": {
- "name": ["665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A."]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/test.json
deleted file mode 100644
index c97fd02..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "adr",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/input.html
deleted file mode 100644
index 3b056af..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/input.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
- 665 3rd St.
- Suite 207
- San Francisco,
- CA
- 94107
- U.S.A.
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/output.json
deleted file mode 100644
index 5e6fa40..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/output.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "items": [{
- "type": ["h-adr"],
- "properties": {
- "street-address": ["665 3rd St."],
- "extended-address": ["Suite 207"],
- "locality": ["San Francisco"],
- "region": ["CA"],
- "postal-code": ["94107"],
- "country-name": ["U.S.A."],
- "name": ["665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A."]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/test.json
deleted file mode 100644
index f0f4211..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Broken into properties",
- "description": "h-adr",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/suite.json
deleted file mode 100644
index 191819a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/adr/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "adr parsing tests",
- "description": "This page was design to test the parsing of adr and its output to the newer JSON structure of micorformats 2. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/input.html
deleted file mode 100644
index 06b4dff..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/input.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- N 37° 24.491,
- W 122° 08.313
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/output.json
deleted file mode 100644
index fbf1669..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["37.408183"],
- "longitude": ["-122.13855"],
- "name": ["N 37° 24.491, W 122° 08.313"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/test.json
deleted file mode 100644
index f757bef..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/abbrpattern/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "The tag pattern",
- "description": "geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/input.html
deleted file mode 100644
index a4ff5d2..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/input.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
- The Bricklayer's Arms
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/output.json
deleted file mode 100644
index 397f280..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"],
- "name": ["The Bricklayer's Arms"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/test.json
deleted file mode 100644
index 32634f6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/hidden/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Hidden value-title pattern",
- "description": "geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/input.html
deleted file mode 100644
index 05c64be..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/input.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
On my way to The Bricklayer's Arms
- (Geo: 51.513458;-0.14812)
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/output.json
deleted file mode 100644
index 8fe397b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "name": ["51.513458;-0.14812"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/test.json
deleted file mode 100644
index 3311f8e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/input.html
deleted file mode 100644
index 3f39cf3..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/input.html
+++ /dev/null
@@ -1,6 +0,0 @@
-We are meeting at
-
- The Bricklayer's Arms
- (Geo: 51.513458:
- -0.14812)
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/output.json
deleted file mode 100644
index 68af892..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"],
- "name": ["The Bricklayer's Arms (Geo: 51.513458: -0.14812)"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/test.json
deleted file mode 100644
index c99a5c5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Broken into properties",
- "description": "geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/suite.json
deleted file mode 100644
index a24e71a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "geo parsing tests",
- "description": "This page was design to test the parsing of geo and its output to the newer JSON structure of micorformats 2. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/input.html
deleted file mode 100644
index 4115e2f..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/input.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- N 51° 51.345,
-
-
- W -0° 14.812
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/output.json
deleted file mode 100644
index 1aa2631..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"],
- "name": ["N 51° 51.345, W -0° 14.812"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/test.json
deleted file mode 100644
index 52a09ba..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/geo/valuetitleclass/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Value-title class pattern",
- "description": "geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/input.html
deleted file mode 100644
index f337957..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/input.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
- Bricklayer's Arms
-
- 3 Charlotte Road,
- City of London,
- EC2A 3PE,
- UK
- –
- Geo:(51.526421;-0.081067)
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/output.json
deleted file mode 100644
index 5a3f6a5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/output.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "items": [{
- "type": ["h-adr"],
- "properties": {
- "name": ["Bricklayer's Arms"],
- "label": ["3 Charlotte Road, City of London, EC2A 3PE, UK"],
- "street-address": ["3 Charlotte Road"],
- "locality": ["City of London"],
- "postal-code": ["EC2A 3PE"],
- "country-name": ["UK"],
- "geo": ["51.526421;-0.081067"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/test.json
deleted file mode 100644
index 6d61fea..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geo/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With geo data",
- "description": "h-adr",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geourl/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geourl/input.html
deleted file mode 100644
index 91edf33..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-adr/geourl/input.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
- John
- P
- Doe
-
-
-
-
- BSc
- BA
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/output.json
deleted file mode 100644
index bd04303..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/output.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "items": [{
- "type": ["h-card"],
- "properties": {
- "name": ["John Doe"],
- "given-name": ["John"],
- "additional-name": ["Peter"],
- "family-name": ["Doe"],
- "honorific-suffix": ["MSc","PHD"],
- "org": ["Madgex", "Mozilla"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/test.json
deleted file mode 100644
index 68f9222..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/p-property/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "p-property",
- "description": "h-card",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/suite.json
deleted file mode 100644
index 84eb683..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-card/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-card parsing tests",
- "description": "This page was design to test the parsing of h-card. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/input.html
deleted file mode 100644
index 9d377b1..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-microformats.org at 7
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/output.json
deleted file mode 100644
index 9ee4ebd..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "url": ["http://microformats.org/2012/06/25/microformats-org-at-7"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/test.json
deleted file mode 100644
index 514df28..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justahyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "h-entry",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/input.html
deleted file mode 100644
index 9c69413..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
microformats.org at 7
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/output.json
deleted file mode 100644
index ea8e13b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/test.json
deleted file mode 100644
index 1f9562b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "h-entry",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/suite.json
deleted file mode 100644
index 86f62ab..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-entry parsing tests",
- "description": "This page was design to test the parsing of h-entry. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/input.html
deleted file mode 100644
index 53ba18c..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/output.json
deleted file mode 100644
index 5a30958..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/output.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "items": [{
- "type": ["h-entry"],
- "properties": {
- "url": ["http://microformats.org/2012/06/25/microformats-org-at-7"],
- "name": ["microformats.org at 7"],
- "content": [{
- "value": "Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service",
- "html": "\n
Last week the microformats.org community \n celebrated its 7th birthday at a gathering hosted by Mozilla in \n San Francisco and recognized accomplishments, challenges, and \n opportunities.
\n\n
The microformats tagline “humans first, machines second” \n forms the basis of many of our \n principles, and \n in that regard, we’d like to recognize a few people and \n thank them for their years of volunteer service
\n "
- }],
- "updated": ["2012-06-25T17:08:26"],
- "author": [{
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/test.json
deleted file mode 100644
index 762ba5a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/summarycontent/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Entry with summary and content",
- "description": "h-entry",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/u-property/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/u-property/input.html
deleted file mode 100644
index 344adc2..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-entry/u-property/input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/output.json
deleted file mode 100644
index 18acbbd..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/output.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["IndieWebCamp 2012"],
- "url": ["http://indiewebcamp.com/2012"],
- "start": ["2012-06-30"],
- "end": ["2012-07-01"],
- "location": [{
- "value": "Geoloqi, 920 SW 3rd Ave. Suite 400, Portland, OR",
- "type": ["h-card"],
- "properties": {
- "name": ["Geoloqi"],
- "org": ["Geoloqi"],
- "url": ["http://geoloqi.com/"],
- "street-address": ["920 SW 3rd Ave. Suite 400"],
- "locality": ["Portland"],
- "region": ["Oregon"]
- }
- }]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["Geoloqi"],
- "org": ["Geoloqi"],
- "url": ["http://geoloqi.com/"],
- "street-address": ["920 SW 3rd Ave. Suite 400"],
- "locality": ["Portland"],
- "region": ["Oregon"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/test.json
deleted file mode 100644
index ed8a707..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/combining/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Event with location",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/input.html
deleted file mode 100644
index 946e810..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/input.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
- The 4th Microformat party will be on
-
- , from
- to
- .
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/output.json
deleted file mode 100644
index ccc2df7..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["The 4th Microformat party"],
- "start": ["2009-06-26T19:00:00"],
- "end": ["2009-06-26T22:00:00"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/test.json
deleted file mode 100644
index f3870b0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/concatenate/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Concatenate multiple datetime elements",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/input.html
deleted file mode 100644
index 66dc530..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
- The party will be on
-
-
-
- March 14th 2013
-
-
- , from
- 07:00:00am
-
-
-
-
-
- Just added,
- Removed
-
- June 29
-
-
2013-07-02
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/output.json
deleted file mode 100644
index 56e74ee..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/output.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["The party"],
- "start": [
- "2013-03-14",
- "2013-06-25T07:00:00",
- "2013-06-26",
- "2013-06-27",
- "2013-06-28",
- "2013-06-29",
- "2013-07-01",
- "2013-07-02"
- ]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/test.json
deleted file mode 100644
index a4d5341..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/dt-property/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "dt-property",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/input.html
deleted file mode 100644
index 3c814f6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-IndieWebCamp 2012
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/output.json
deleted file mode 100644
index b858f23..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["IndieWebCamp 2012"],
- "url": ["http://indiewebcamp.com/2012"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/test.json
deleted file mode 100644
index b20f2a4..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justahyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/input.html
deleted file mode 100644
index 3cc7ff3..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
IndieWebCamp 2012
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/output.json
deleted file mode 100644
index 07bdd81..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["IndieWebCamp 2012"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/test.json
deleted file mode 100644
index 8a997d0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/suite.json
deleted file mode 100644
index eb7c800..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-event parsing tests",
- "description": "This page was design to test the parsing of h-event. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/input.html
deleted file mode 100644
index 9d04248..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/input.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
- The 4th Microformat party will be on
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
- , from
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/output.json
deleted file mode 100644
index b80d3e5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/output.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["The 4th Microformat party"],
- "start": [
- "2009-06-26T19:00:00-0800",
- "2009-06-26T19:00:00-0800",
- "2009-06-26T19:00:00+0800",
- "2009-06-26T19:00:00Z",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00-0800",
- "2009-06-26T19:00:00+0800",
- "2009-06-26T19:00:00Z",
- "2009-06-26T19:00:00"
- ],
- "end": [
- "2013-034",
- "2013-06-27 15:34:00"
- ]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/test.json
deleted file mode 100644
index def2add..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-event/time/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Time formats",
- "description": "h-event",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/input.html
deleted file mode 100644
index f1dbd31..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/input.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- N 37° 24.491,
- W 122° 08.313
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/output.json
deleted file mode 100644
index fbf1669..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["37.408183"],
- "longitude": ["-122.13855"],
- "name": ["N 37° 24.491, W 122° 08.313"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/test.json
deleted file mode 100644
index 2b33256..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/abbrpattern/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "The Tag Pattern",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/input.html
deleted file mode 100644
index 4694c88..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/input.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
My favourite hill in the lakes is
-
- Pen-y-ghent
- (Geo: 54.155278,
- -2.249722). It
- raises to 694m.
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/output.json
deleted file mode 100644
index fdc7b5d..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/output.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "name": ["Pen-y-ghent"],
- "latitude": ["54.155278"],
- "longitude": ["-2.249722"],
- "altitude": ["694"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/test.json
deleted file mode 100644
index 50c08c9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/altitude/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Geo with a altitude property",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/input.html
deleted file mode 100644
index 71bce2b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/input.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
- The Bricklayer's Arms
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/output.json
deleted file mode 100644
index 397f280..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"],
- "name": ["The Bricklayer's Arms"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/test.json
deleted file mode 100644
index fe15150..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/hidden/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "The tag pattern",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/input.html
deleted file mode 100644
index d465e56..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/input.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
On my way to The Bricklayer's Arms
- (Geo: 51.513458;-0.14812)
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/output.json
deleted file mode 100644
index a1f5099..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "name": ["51.513458;-0.14812"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/test.json
deleted file mode 100644
index d2518a4..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/input.html
deleted file mode 100644
index 1392cf6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/input.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
We are meeting at
- The Bricklayer's Arms
- (Geo: 51.513458:
- -0.14812)
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/output.json
deleted file mode 100644
index 4e75c63..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "name": ["The Bricklayer's Arms"],
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/test.json
deleted file mode 100644
index 9b3bac4..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Broken into properties",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/suite.json
deleted file mode 100644
index a16682b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-geo parsing tests",
- "description": "This page was design to test the parsing of h-geo. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/input.html
deleted file mode 100644
index 3dda4cc..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/input.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- N 51° 51.345,
-
-
- W -0° 14.812
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/output.json
deleted file mode 100644
index 1aa2631..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-geo"],
- "properties": {
- "latitude": ["51.513458"],
- "longitude": ["-0.14812"],
- "name": ["N 51° 51.345, W -0° 14.812"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/test.json
deleted file mode 100644
index 78d6c9b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-geo/valuetitleclass/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Value-title class pattern",
- "description": "h-geo",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/input.html
deleted file mode 100644
index ebac654..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/input.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/output.json
deleted file mode 100644
index c1e94a7..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/output.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "items": [{
- "type": ["h-news"],
- "properties": {
- "entry": [{
- "value": "microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek",
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "url": ["http://microformats.org/2012/06/25/microformats-org-at-7"],
- "content": [{
- "value": "Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service",
- "html": "\n
Last week the microformats.org community \n celebrated its 7th birthday at a gathering hosted by Mozilla in \n San Francisco and recognized accomplishments, challenges, and \n opportunities.
\n\n
The microformats tagline “humans first, machines second” \n forms the basis of many of our \n principles, and \n in that regard, we’d like to recognize a few people and \n thank them for their years of volunteer service
\n "
- }],
- "summary": ["Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities."],
- "updated": ["2012-06-25T17:08:26"],
- "author": {
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }
- }
- }],
- "dateline": [{
- "value": "San Francisco, CA",
- "type": ["h-adr"],
- "properties": {
- "locality": ["San Francisco"],
- "region": ["CA"],
- "name": ["San Francisco, CA"]
- }
- }],
- "geo": ["37.774921;-122.445202"],
- "source-org": [{
- "value": "microformats.org",
- "type": ["h-card"],
- "properties": {
- "name": ["microformats.org"],
- "url": ["http://microformats.org/"]
- }
- }],
- "principles": ["http://microformats.org/wiki/Category:public_domain_license"],
- "name": ["microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek San Francisco, CA (Geo: 37.774921;-122.445202) microformats.org Publishing policy"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/test.json
deleted file mode 100644
index 76ce46b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/all/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With dateline h-card",
- "description": "h-news",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/input.html
deleted file mode 100644
index 8d0fe48..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/output.json
deleted file mode 100644
index 3bd6c08..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/output.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "items": [{
- "type": ["h-news"],
- "properties": {
- "entry": [{
- "value": "microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek",
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "url": ["http://microformats.org/2012/06/25/microformats-org-at-7"],
- "content": [{
- "value": "Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service",
- "html": "\n
Last week the microformats.org community \n celebrated its 7th birthday at a gathering hosted by Mozilla in \n San Francisco and recognized accomplishments, challenges, and \n opportunities.
\n\n
The microformats tagline “humans first, machines second” \n forms the basis of many of our \n principles, and \n in that regard, we’d like to recognize a few people and \n thank them for their years of volunteer service
\n "
- }],
- "updated": ["2012-06-25T17:08:26"],
- "author": {
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }
- }
- }],
- "source-org": [{
- "value": "microformats.org",
- "type": ["h-card"],
- "properties": {
- "name": ["microformats.org"],
- "url": ["http://microformats.org/"]
- }
- }],
- "name": ["microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek microformats.org"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/test.json
deleted file mode 100644
index 4e9162e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/minimum/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Minimum properties",
- "description": "h-news",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/suite.json
deleted file mode 100644
index 7fb5ff9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-news/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-news parsing tests",
- "description": "This page was design to test the parsing of h-news. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/input.html
deleted file mode 100644
index d51ceda..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-Mozilla Foundation
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/output.json
deleted file mode 100644
index 9acc8fe..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-org"],
- "properties": {
- "name": ["Mozilla Foundation"],
- "url": ["http://mozilla.org/"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/test.json
deleted file mode 100644
index 01ba3eb..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/hyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "h-org",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/input.html
deleted file mode 100644
index 822668d..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/input.html
+++ /dev/null
@@ -1 +0,0 @@
-Mozilla Foundation
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/output.json
deleted file mode 100644
index e7406a9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-org"],
- "properties": {
- "name": ["Mozilla Foundation"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/test.json
deleted file mode 100644
index 63b8dfd..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simple/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Simple org",
- "description": "h-org",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/input.html
deleted file mode 100644
index e9480e0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/input.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- W3C -
- CSS Working Group
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/output.json
deleted file mode 100644
index e094560..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/output.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "items": [{
- "type": ["h-org"],
- "properties": {
- "organization-name": ["W3C"],
- "organization-unit": ["CSS Working Group"],
- "name": ["W3C - CSS Working Group"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/test.json
deleted file mode 100644
index 2f1b936..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Simple properties",
- "description": "h-org",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/suite.json
deleted file mode 100644
index db03f0e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-org/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-org parsing tests",
- "description": "This page was design to test the parsing of h-org. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/input.html
deleted file mode 100644
index 60dfa04..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
Raspberry Pi
-
-
The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.
From:
- The Raspberry Pi Foundation -
- Cambridge
- UK
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/output.json
deleted file mode 100644
index a4e56dc..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/output.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "photo": ["http://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/RaspberryPi.jpg/320px-RaspberryPi.jpg"],
- "description": [{
- "value": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.",
- "html": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming."
- }],
- "url": ["http://www.raspberrypi.org/"],
- "price": ["£29.95"],
- "review": [{
- "value": "9.2 out of 10 based on 178 reviews",
- "type": ["h-review-aggregate"],
- "properties": {
- "rating": [{
- "value": "9.2 out of 10 based on 178 reviews",
- "type": ["h-rating"],
- "properties": {
- "average": ["9.2"],
- "best": ["10"],
- "count": ["178"],
- "name": ["9.2 out of 10 based on 178 reviews"]
- }
- }],
- "name": ["9.2 out of 10 based on 178 reviews"]
- }
- }],
- "category": ["Computer","Education"],
- "brand": [{
- "value": "From: The Raspberry Pi Foundation - Cambridge UK",
- "type": ["h-card"],
- "properties": {
- "name": ["The Raspberry Pi Foundation"],
- "org": ["The Raspberry Pi Foundation"],
- "locality": ["Cambridge"],
- "country-name": ["UK"]
- }
- }]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/test.json
deleted file mode 100644
index 0b56103..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/aggregate/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With h-review-aggregate",
- "description": "h-product",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/input.html
deleted file mode 100644
index 868d980..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-Raspberry Pi
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/output.json
deleted file mode 100644
index b073a3b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "url": ["http://www.raspberrypi.org/"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/test.json
deleted file mode 100644
index bc40277..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justahyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "h-product",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/input.html
deleted file mode 100644
index 5fcf87b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
Raspberry Pi
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/output.json
deleted file mode 100644
index 61831b3..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/test.json
deleted file mode 100644
index 51a3d3e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "h-product",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/input.html
deleted file mode 100644
index 5015c2a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/input.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
Raspberry Pi
-
-
The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/output.json
deleted file mode 100644
index a5b92c5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/output.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "photo": ["http://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/RaspberryPi.jpg/320px-RaspberryPi.jpg"],
- "description": [{
- "value": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.",
- "html": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming."
- }],
- "url": ["http://www.raspberrypi.org/"],
- "price": ["£29.95"],
- "category": ["Computer","Education"],
- "review": [{
- "value": "4.5 out of 5",
- "type": ["h-review"],
- "properties": {
- "rating": ["4.5"],
- "name": ["4.5 out of 5"]
- }
- }]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/test.json
deleted file mode 100644
index ac3016f..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With h-review",
- "description": "h-product",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/suite.json
deleted file mode 100644
index e5336e6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-product/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-product parsing tests",
- "description": "This page was design to test the parsing of h-product. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/input.html
deleted file mode 100644
index 886b827..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/input.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
Yorkshire Puddings
-
Makes 6 good sized Yorkshire puddings, the way my mum taught me
-
-
-
-
-
-
- 4.5 stars out 5 based on
- 35 reviews
-
-
-
-
-
Ingredients
-
-
1 egg
-
75g plain flour
-
70ml milk
-
60ml water
-
Pinch of salt
-
-
-
-
Time
-
-
Preparation 10 mins
-
Cook 25 mins
-
-
-
-
Instructions
-
-
-
Pre-heat oven to 230C or gas mark 8. Pour the vegetable oil evenly into 2 x 4-hole
- Yorkshire pudding tins and place in the oven to heat through.
-
-
To make the batter, add all the flour into a bowl and beat in the eggs until smooth.
- Gradually add the milk and water while beating the mixture. It should be smooth and
- without lumps. Finally add a pinch of salt.
-
-
Make sure the oil is piping hot before pouring the batter evenly into the tins.
- Place in the oven for 20-25 minutes until pudding have risen and look golden brown
- Photo by dithie
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/output.json
deleted file mode 100644
index 2bd8227..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-recipe/all/output.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "items": [ {
- "type": ["h-recipe"],
- "properties": {
- "name": ["Yorkshire Puddings"],
- "summary": ["Makes 6 good sized Yorkshire puddings, the way my mum taught me"],
- "yield": ["6 good sized Yorkshire puddings"],
- "photo": ["http://codebits.glennjones.net/semantic/yorkshire-puddings.jpg"],
- "review": [
- {
- "value": "4.5 stars out 5 based on 35 reviews",
- "type": ["h-review-aggregate"],
- "properties": {
- "rating": ["4.5 stars out 5 based on"],
- "average": ["4.5"],
- "count": ["35"],
- "name": ["4.5 stars out 5 based on 35 reviews"]
- }
- }
- ],
- "ingredient": [{
- "value": "1 egg",
- "html": "1 egg"
- },{
- "value": "75g plain flour",
- "html": "75g plain flour"
- },{
- "value": "70ml milk",
- "html": "70ml milk"
- },{
- "value": "60ml water",
- "html": "60ml water"
- },{
- "value": "Pinch of salt",
- "html": "Pinch of salt"
- }],
- "instructions": [{
- "value": "Pre-heat oven to 230C or gas mark 8. Pour the vegetable oil evenly into 2 x 4-hole Yorkshire pudding tins and place in the oven to heat through. To make the batter, add all the flour into a bowl and beat in the eggs until smooth. Gradually add the milk and water while beating the mixture. It should be smooth and without lumps. Finally add a pinch of salt. Make sure the oil is piping hot before pouring the batter evenly into the tins. Place in the oven for 20-25 minutes until pudding have risen and look golden brown",
- "html": "\n \n
Pre-heat oven to 230C or gas mark 8. Pour the vegetable oil evenly into 2 x 4-hole \n Yorkshire pudding tins and place in the oven to heat through.
\n \n
To make the batter, add all the flour into a bowl and beat in the eggs until smooth. \n Gradually add the milk and water while beating the mixture. It should be smooth and \n without lumps. Finally add a pinch of salt.
\n \n
Make sure the oil is piping hot before pouring the batter evenly into the tins. \n Place in the oven for 20-25 minutes until pudding have risen and look golden brown
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/output.json
deleted file mode 100644
index dc4ce52..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/output.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "items": [{
- "type": ["h-resume"],
- "properties": {
- "name": ["Tim Berners-Lee"],
- "summary": ["Invented the World Wide Web."],
- "contact": [{
- "value": "Director of the World Wide Web Foundation",
- "type": ["h-card"],
- "properties": {
- "name": ["Director of the World Wide Web Foundation"],
- "title": ["Director of the World Wide Web Foundation"]
- }
- }],
- "experience": [{
- "value": "Director World Wide Web Foundation Jan 2009 - Present (2 years 11 month)",
- "type": ["h-event", "h-card"],
- "properties": {
- "name": ["World Wide Web Foundation"],
- "org": ["World Wide Web Foundation"],
- "url": ["http://www.webfoundation.org/"],
- "start": ["2009-01-18"],
- "duration": ["P2Y11M"]
- }
- }]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["Director of the World Wide Web Foundation"],
- "title": ["Director of the World Wide Web Foundation"]
- }
- },{
- "type": ["h-event"],
- "properties": {
- "name": ["World Wide Web Foundation"],
- "org": ["World Wide Web Foundation"],
- "url": ["http://www.webfoundation.org/"],
- "start": ["2009-01-18"],
- "duration": ["P2Y11M"]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["World Wide Web Foundation"],
- "org": ["World Wide Web Foundation"],
- "url": ["http://www.webfoundation.org/"],
- "start": ["2009-01-18"],
- "duration": ["P2Y11M"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/test.json
deleted file mode 100644
index 828c387..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-resume/work/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Work experience",
- "description": "h-resume",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/input.html
deleted file mode 100644
index 713d7d6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/input.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
Fullfrontal
-
A one day JavaScript Conference held in Brighton
-
-
-
-
- 9.9 out of
- 10
- based on 62 reviews
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/output.json
deleted file mode 100644
index 3b072d8..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/output.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "items": [{
- "type": ["h-review-aggregate"],
- "properties": {
- "item": [{
- "value": "Fullfrontal A one day JavaScript Conference held in Brighton 9th November 2012",
- "type": ["h-event"],
- "properties": {
- "name": ["Fullfrontal"],
- "description": ["A one day JavaScript Conference held in Brighton"],
- "start": ["2012-11-09"]
- }
- }],
- "rating": ["9.9"],
- "average": ["9.9"],
- "best": ["10"],
- "count": ["62"],
- "name": ["Fullfrontal A one day JavaScript Conference held in Brighton 9th November 2012 9.9 out of 10 based on 62 reviews"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/test.json
deleted file mode 100644
index 52727d9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/hevent/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With p-item as a h-event",
- "description": "hreview-aggregate",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/input.html
deleted file mode 100644
index 233a1d5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/input.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
Mediterranean Wraps
-
- Customers flock to this small restaurant for their
- tasty falafel and shawerma wraps and welcoming staff.
-
- 4.5 out of 5
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/output.json
deleted file mode 100644
index c4f7da0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/output.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "items": [{
- "type": ["h-review-aggregate"],
- "properties": {
- "item": [{
- "value": "Mediterranean Wraps",
- "type": ["h-item"],
- "properties": {
- "name": ["Mediterranean Wraps"]
- }
- }],
- "summary": ["Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff."],
- "rating": ["4.5"],
- "name": ["Mediterranean Wraps Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff. 4.5 out of 5"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/test.json
deleted file mode 100644
index 274d9c9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/justahyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Minimum properties",
- "description": "h-review-aggregate",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/input.html
deleted file mode 100644
index 12b3a31..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
Mediterranean Wraps
-
- 433 S California Ave,
- Palo Alto,
- CA -
- (650) 321-8189
-
-
- Customers flock to this small restaurant for their
- tasty falafel and shawerma wraps and welcoming staff.
-
- 9.2 out of
- 10
- based on 17 reviews
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/output.json
deleted file mode 100644
index fbe8cd6..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/output.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "items": [{
- "type": ["h-review-aggregate"],
- "properties": {
- "item": [{
- "value": "Mediterranean Wraps 433 S California Ave, Palo Alto, CA - (650) 321-8189",
- "type": ["h-card"],
- "properties": {
- "name": ["Mediterranean Wraps"],
- "street-address": ["433 S California Ave"],
- "locality": ["Palo Alto"],
- "region": ["CA"],
- "tel": ["(650) 321-8189"]
- }
- }],
- "summary": ["Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff."],
- "rating": ["9.2"],
- "average": ["9.2"],
- "best": ["10"],
- "count": ["17"],
- "name": ["Mediterranean Wraps 433 S California Ave, Palo Alto, CA - (650) 321-8189 Customers flock to this small restaurant for their tasty falafel and shawerma wraps and welcoming staff. 9.2 out of 10 based on 17 reviews"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/test.json
deleted file mode 100644
index 210c962..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Broken into properties",
- "description": "h-review-aggregate",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/suite.json
deleted file mode 100644
index 364b3b0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review-aggregate/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-review-aggregate parsing tests",
- "description": "This page was design to test the parsing of h-review-aggregate. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/input.html
deleted file mode 100644
index 3c1d515..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-Crepes on Cole
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/output.json
deleted file mode 100644
index 4e46571..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "name": ["Crepes on Cole"],
- "url": ["https://plus.google.com/116941523817079328322/about"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/test.json
deleted file mode 100644
index 0f2c720..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/hyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "h-review",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/implieditem/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/implieditem/input.html
deleted file mode 100644
index 63c0b50..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/implieditem/input.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/output.json
deleted file mode 100644
index 5d0658e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/output.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
-
- "item": [{
- "value": "Crepes on Cole",
- "type": ["h-item"],
- "properties": {
- "photo": ["http://example.com/images/photo.gif"],
- "name": ["Crepes on Cole"],
- "url": ["http://example.com/crepeoncole"]
- }
- }],
- "rating": ["5"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/test.json
deleted file mode 100644
index 70f215e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/item/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With item",
- "description": "h-review",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/input.html
deleted file mode 100644
index c85e031..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
Crepes on Cole
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/output.json
deleted file mode 100644
index 12e27cf..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "name": ["Crepes on Cole"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/test.json
deleted file mode 100644
index 5517189..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "h-review",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/input.html
deleted file mode 100644
index 1d8de16..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/output.json
deleted file mode 100644
index a104efa..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "name": ["Crepes on Cole"],
- "photo": ["http://example.com/images/photo.gif"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/test.json
deleted file mode 100644
index 0771b6a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/photo/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a photo",
- "description": "h-review",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/suite.json
deleted file mode 100644
index a8e76d2..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "h-review parsing tests",
- "description": "This page was design to test the parsing of h-review. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/input.html
deleted file mode 100644
index d96e965..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
- 5 out of 5 stars
-
Crepes on Cole is awesome
-
- Reviewer: Tantek -
-
-
-
-
- Crepes on Cole is one of the best little
- creperies in San Francisco.
- Excellent food and service. Plenty of tables in a variety of sizes
- for parties large and small. Window seating makes for excellent
- people watching to/from the N-Judah which stops right outside.
- I've had many fun social gatherings here, as well as gotten
- plenty of work done thanks to neighborhood WiFi.
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/output.json
deleted file mode 100644
index 88d2edb..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/output.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "rating": ["5"],
- "name": ["Crepes on Cole is awesome"],
- "reviewer": [{
- "value": "Reviewer: Tantek -",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"]
- }
- }],
- "description": [{
- "value": "Crepes on Cole is one of the best little creperies in San Francisco. Excellent food and service. Plenty of tables in a variety of sizes for parties large and small. Window seating makes for excellent people watching to/from the N-Judah which stops right outside. I've had many fun social gatherings here, as well as gotten plenty of work done thanks to neighborhood WiFi.",
- "html": "\n
\n Crepes on Cole is one of the best little \n creperies in San Francisco.\n Excellent food and service. Plenty of tables in a variety of sizes \n for parties large and small. Window seating makes for excellent \n people watching to/from the N-Judah which stops right outside. \n I've had many fun social gatherings here, as well as gotten \n plenty of work done thanks to neighborhood WiFi.\n
\n "
- }],
- "item": [{
- "value": "Crepes on Cole is one of the best little creperies in San Francisco. Excellent food and service. Plenty of tables in a variety of sizes for parties large and small. Window seating makes for excellent people watching to/from the N-Judah which stops right outside. I've had many fun social gatherings here, as well as gotten plenty of work done thanks to neighborhood WiFi.",
- "type": ["h-card"],
- "properties": {
- "name": ["Crepes on Cole"],
- "org": ["Crepes on Cole"],
- "adr": [{
- "value": "San Francisco",
- "type": ["h-adr"],
- "properties": {
- "locality": ["San Francisco"],
- "name": ["San Francisco"]
- }
- }]
- }
- }],
- "category": ["crepe"],
- "url": ["http://example.com/crepe"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/test.json
deleted file mode 100644
index 824d1db..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/h-review/vcard/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With vcard item",
- "description": "h-review",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/input.html
deleted file mode 100644
index 087b54d..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/input.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
- The 4th Microformat party will be on
-
-
- , from
- 07:00:00pm
-
-
- , from
- 07:00:00am
-
-
- , from
- 07:00pm
-
-
- , from
- 07pm
-
-
- , from
- 7pm
-
-
- , from
- 7:00pm
-
-
- , from
- 07:00p.m.
-
-
- , from
- 07:00PM
-
-
- , from
- 7:00am
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/output.json
deleted file mode 100644
index 812afaa..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/output.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "items": [{
- "type": ["h-event"],
- "properties": {
- "name": ["The 4th Microformat party"],
- "start": [
- "2009-06-26T19:00:00",
- "2009-06-26T07:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T19:00:00",
- "2009-06-26T07:00:00"
- ]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/test.json
deleted file mode 100644
index 49104ff..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/ampm/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Meridiem time formats (am pm)",
- "description": "hcalendar",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/attendees/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/attendees/input.html
deleted file mode 100644
index 2379295..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hcalendar/attendees/input.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
- CPJ Online Press Freedom Summit
- () in
- San Francisco.
- Attendees:
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/output.json
deleted file mode 100644
index edd5aeb..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/output.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "items": [{
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "content": [{
- "value": "Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service",
- "html": "\n
Last week the microformats.org community \n celebrated its 7th birthday at a gathering hosted by Mozilla in \n San Francisco and recognized accomplishments, challenges, and \n opportunities.
\n\n
The microformats tagline “humans first, machines second” \n forms the basis of many of our \n principles, and \n in that regard, we’d like to recognize a few people and \n thank them for their years of volunteer service
\n "
- }],
- "summary": ["Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities."],
- "updated": ["2012-06-25T17:08:26"],
- "author": [{
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/test.json
deleted file mode 100644
index 3f65bcc..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hentry/summarycontent/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Entry with summary and content",
- "description": "hentry",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/input.html
deleted file mode 100644
index f27084a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/input.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/output.json
deleted file mode 100644
index 54109ed..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/output.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "items": [{
- "type": ["h-news"],
- "properties": {
- "entry": [{
- "value": "microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek",
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "summary": ["Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities."],
- "updated": ["2012-06-25T17:08:26"],
- "author": {
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }
- }
- }],
- "dateline": [{
- "value": "San Francisco, CA",
- "type": ["h-card"],
- "properties": {
- "adr": [{
- "value": "San Francisco, CA",
- "type": ["h-adr"],
- "properties": {
- "locality": ["San Francisco"],
- "region": ["CA"],
- "name": ["San Francisco, CA"]
- }
- }],
- "name": ["San Francisco, CA"]
- }
- }],
- "geo": [{
- "value": "37.774921;-122.445202",
- "type": ["h-geo"],
- "properties": {
- "name": ["37.774921;-122.445202"]
- }
- }],
- "source-org": [{
- "value": "microformats.org",
- "type": ["h-card"],
- "properties": {
- "name": ["microformats.org"],
- "url": ["http://microformats.org/"]
- }
- }],
- "name": ["microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek San Francisco, CA (Geo: 37.774921;-122.445202) microformats.org Publishing policy"]
- }
- },{
- "type": ["rel"],
- "properties": {
- "bookmark": ["http://microformats.org/2012/06/25/microformats-org-at-7"],
- "principles": ["http://microformats.org/wiki/Category:public_domain_license"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/test.json
deleted file mode 100644
index c9d3203..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/all/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With dateline vcard",
- "description": "hnews",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/input.html
deleted file mode 100644
index 6dae51d..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
Last week the microformats.org community
- celebrated its 7th birthday at a gathering hosted by Mozilla in
- San Francisco and recognized accomplishments, challenges, and
- opportunities.
-
-
The microformats tagline “humans first, machines second”
- forms the basis of many of our
- principles, and
- in that regard, we’d like to recognize a few people and
- thank them for their years of volunteer service
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/output.json
deleted file mode 100644
index c57b8f4..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/output.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "items": [{
- "type": ["h-news"],
- "properties": {
- "entry": [{
- "value": "microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek",
- "type": ["h-entry"],
- "properties": {
- "name": ["microformats.org at 7"],
- "author": {
- "value": "Tantek",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"],
- "url": ["http://tantek.com/"]
- }
- }
- }
- }],
- "source-org": [{
- "value": "microformats.org",
- "type": ["h-card"],
- "properties": {
- "name": ["microformats.org"],
- "url": ["http://microformats.org/"]
- }
- }],
- "name": ["microformats.org at 7 Last week the microformats.org community celebrated its 7th birthday at a gathering hosted by Mozilla in San Francisco and recognized accomplishments, challenges, and opportunities. The microformats tagline “humans first, machines second” forms the basis of many of our principles, and in that regard, we’d like to recognize a few people and thank them for their years of volunteer service Updated June 25th, 2012 by Tantek microformats.org"]
- }
- },{
- "type": ["rel"],
- "properties": {
- "bookmark": ["http://microformats.org/2012/06/25/microformats-org-at-7"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/test.json
deleted file mode 100644
index 959d7b0..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/minimum/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Minimum properties",
- "description": "hnews",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/suite.json
deleted file mode 100644
index a4316ec..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hnews/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "hnews parsing tests",
- "description": "This page was design to test the parsing of hnews. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/input.html
deleted file mode 100644
index 099123f..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
Raspberry Pi
-
-
The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.
From:
- The Raspberry Pi Foundation -
-
- Cambridge
- UK
-
-
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/output.json
deleted file mode 100644
index dc16581..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/output.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "photo": ["http://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/RaspberryPi.jpg/320px-RaspberryPi.jpg"],
- "description": [{
- "value": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.",
- "html": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming."
- }],
- "url": ["http://www.raspberrypi.org/"],
- "price": ["£29.95"],
- "review": [{
- "value": "9.2 out of 10 based on 178 reviews",
- "type": ["h-review-aggregate"],
- "properties": {
- "rating": ["9.2"],
- "average": ["9.2"],
- "best": ["10"],
- "count": ["178"]
- }
- }],
- "category": ["Computer","Education"],
- "brand": [{
- "value": "From: The Raspberry Pi Foundation - Cambridge UK",
- "type": ["h-card"],
- "properties": {
- "name": ["The Raspberry Pi Foundation"],
- "org": ["The Raspberry Pi Foundation"],
- "adr": [{
- "value": "Cambridge UK",
- "type": ["h-adr"],
- "properties": {
- "locality": ["Cambridge"],
- "country-name": ["UK"],
- "name": ["Cambridge UK"]
- }
- }]
- }
- }]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/test.json
deleted file mode 100644
index 928d51a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/aggregate/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With h-review-aggregate",
- "description": "hproduct",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/input.html
deleted file mode 100644
index 96be7c2..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/input.html
+++ /dev/null
@@ -1 +0,0 @@
-Raspberry Pi
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/output.json
deleted file mode 100644
index b073a3b..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "url": ["http://www.raspberrypi.org/"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/test.json
deleted file mode 100644
index 8ecc35e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justahyperlink/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a hyperlink",
- "description": "hproduct",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/input.html
deleted file mode 100644
index 3b27277..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
Raspberry Pi
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/output.json
deleted file mode 100644
index 61831b3..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/test.json
deleted file mode 100644
index 7d8211f..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "hproduct",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/input.html
deleted file mode 100644
index ba5d057..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/input.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
Raspberry Pi
-
-
The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/output.json
deleted file mode 100644
index a5b92c5..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/output.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "items": [{
- "type": ["h-product"],
- "properties": {
- "name": ["Raspberry Pi"],
- "photo": ["http://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/RaspberryPi.jpg/320px-RaspberryPi.jpg"],
- "description": [{
- "value": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming.",
- "html": "The Raspberry Pi is a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things that your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We want to see it being used by kids all over the world to learn programming."
- }],
- "url": ["http://www.raspberrypi.org/"],
- "price": ["£29.95"],
- "category": ["Computer","Education"],
- "review": [{
- "value": "4.5 out of 5",
- "type": ["h-review"],
- "properties": {
- "rating": ["4.5"],
- "name": ["4.5 out of 5"]
- }
- }]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/test.json
deleted file mode 100644
index 90f44e9..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/simpleproperties/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With h-review",
- "description": "hproduct",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/suite.json
deleted file mode 100644
index e347f49..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hproduct/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "hproduct parsing tests",
- "description": "This page was design to test the parsing of hproduct. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/input.html
deleted file mode 100644
index 886b827..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/input.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
Yorkshire Puddings
-
Makes 6 good sized Yorkshire puddings, the way my mum taught me
-
-
-
-
-
-
- 4.5 stars out 5 based on
- 35 reviews
-
-
-
-
-
Ingredients
-
-
1 egg
-
75g plain flour
-
70ml milk
-
60ml water
-
Pinch of salt
-
-
-
-
Time
-
-
Preparation 10 mins
-
Cook 25 mins
-
-
-
-
Instructions
-
-
-
Pre-heat oven to 230C or gas mark 8. Pour the vegetable oil evenly into 2 x 4-hole
- Yorkshire pudding tins and place in the oven to heat through.
-
-
To make the batter, add all the flour into a bowl and beat in the eggs until smooth.
- Gradually add the milk and water while beating the mixture. It should be smooth and
- without lumps. Finally add a pinch of salt.
-
-
Make sure the oil is piping hot before pouring the batter evenly into the tins.
- Place in the oven for 20-25 minutes until pudding have risen and look golden brown
- Photo by dithie
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/output.json
deleted file mode 100644
index 6312009..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hrecipe/all/output.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "items": [ {
- "type": ["h-recipe"],
- "properties": {
- "name": ["Yorkshire Puddings"],
- "summary": ["Makes 6 good sized Yorkshire puddings, the way my mum taught me"],
- "yield": ["6 good sized Yorkshire puddings"],
- "photo": ["http://codebits.glennjones.net/semantic/yorkshire-puddings.jpg"],
- "review": [
- {
- "value": "4.5 stars out 5 based on 35 reviews",
- "type": ["h-review-aggregate"],
- "properties": {
- "rating": ["4.5 stars out 5 based on"],
- "average": ["4.5"],
- "count": ["35"],
- "name": ["4.5 stars out 5 based on 35 reviews"]
- }
- }
- ],
- "ingredient": [
- "1 egg",
- "75g plain flour",
- "70ml milk",
- "60ml water",
- "Pinch of salt"
- ],
- "instructions": [
- "\n \n
Pre-heat oven to 230C or gas mark 8. Pour the vegetable oil evenly into 2 x 4-hole \n Yorkshire pudding tins and place in the oven to heat through.
\n \n
To make the batter, add all the flour into a bowl and beat in the eggs until smooth. \n Gradually add the milk and water while beating the mixture. It should be smooth and \n without lumps. Finally add a pinch of salt.
\n \n
Make sure the oil is piping hot before pouring the batter evenly into the tins. \n Place in the oven for 20-25 minutes until pudding have risen and look golden brown
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/output.json
deleted file mode 100644
index 5d0658e..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/output.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
-
- "item": [{
- "value": "Crepes on Cole",
- "type": ["h-item"],
- "properties": {
- "photo": ["http://example.com/images/photo.gif"],
- "name": ["Crepes on Cole"],
- "url": ["http://example.com/crepeoncole"]
- }
- }],
- "rating": ["5"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/test.json
deleted file mode 100644
index 36d9e02..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/item/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With item",
- "description": "hreview",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/input.html
deleted file mode 100644
index fecbd66..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
Crepes on Cole
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/output.json
deleted file mode 100644
index 12e27cf..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/output.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "name": ["Crepes on Cole"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/test.json
deleted file mode 100644
index da57892..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/justaname/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a name",
- "description": "hreview",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/input.html
deleted file mode 100644
index 60f6670..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/input.html
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/output.json
deleted file mode 100644
index a104efa..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/output.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "name": ["Crepes on Cole"],
- "photo": ["http://example.com/images/photo.gif"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/test.json
deleted file mode 100644
index 400ce3c..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/photo/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Just a photo",
- "description": "hreview",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/suite.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/suite.json
deleted file mode 100644
index 166d489..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/suite.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "hreview parsing tests",
- "description": "This page was design to test the parsing of hreview. These tests are part of the micorformats 2 test suite."
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/input.html
deleted file mode 100644
index 02ba16a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
- 5 out of 5 stars
-
Crepes on Cole is awesome
-
- Reviewer: Tantek -
-
-
-
-
- Crepes on Cole is one of the best little
- creperies in San Francisco.
- Excellent food and service. Plenty of tables in a variety of sizes
- for parties large and small. Window seating makes for excellent
- people watching to/from the N-Judah which stops right outside.
- I've had many fun social gatherings here, as well as gotten
- plenty of work done thanks to neighborhood WiFi.
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/output.json
deleted file mode 100644
index e95e65c..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/output.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "items": [{
- "type": ["h-review"],
- "properties": {
- "rating": ["5"],
- "name": ["Crepes on Cole is awesome"],
- "reviewer": [{
- "value": "Reviewer: Tantek -",
- "type": ["h-card"],
- "properties": {
- "name": ["Tantek"]
- }
- }],
- "description": [{
- "value": "Crepes on Cole is one of the best little creperies in San Francisco. Excellent food and service. Plenty of tables in a variety of sizes for parties large and small. Window seating makes for excellent people watching to/from the N-Judah which stops right outside. I've had many fun social gatherings here, as well as gotten plenty of work done thanks to neighborhood WiFi.",
- "html": "\n
\n Crepes on Cole is one of the best little \n creperies in San Francisco.\n Excellent food and service. Plenty of tables in a variety of sizes \n for parties large and small. Window seating makes for excellent \n people watching to/from the N-Judah which stops right outside. \n I've had many fun social gatherings here, as well as gotten \n plenty of work done thanks to neighborhood WiFi.\n
\n "
- }],
- "item": [{
- "value": "Crepes on Cole is one of the best little creperies in San Francisco. Excellent food and service. Plenty of tables in a variety of sizes for parties large and small. Window seating makes for excellent people watching to/from the N-Judah which stops right outside. I've had many fun social gatherings here, as well as gotten plenty of work done thanks to neighborhood WiFi.",
- "type": ["h-item", "h-card"],
- "properties": {
- "name": ["Crepes on Cole"],
- "org": ["Crepes on Cole"],
- "adr": [{
- "value": "San Francisco",
- "type": ["h-adr"],
- "properties": {
- "locality": ["San Francisco"],
- "name": ["San Francisco"]
- }
- }]
- }
- }],
- "category": ["crepe"],
- "url": ["http://example.com/crepe"]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/test.json
deleted file mode 100644
index 74ef602..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/hreview/vcard/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "With vcard item",
- "description": "hreview",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/input.html
deleted file mode 100644
index b031298..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
- Brendan Eich
-
-
- Mitchell Baker
-
-
-
Mozilla
-
- 665 3rd St.
- Suite 207
- San Francisco,
- CA
- 94107
- U.S.A.
-
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/output.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/output.json
deleted file mode 100644
index 8b0516a..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/output.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "items": [{
- "type": ["h-card"],
- "properties": {
- "name": ["Brendan Eich"],
- "org": ["Mozilla"],
- "adr": [{
- "value": "665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A.",
- "type": ["h-adr"],
- "properties": {
- "street-address": ["665 3rd St."],
- "extended-address": ["Suite 207"],
- "locality": ["San Francisco"],
- "region": ["CA"],
- "postal-code": ["94107"],
- "country-name": ["U.S.A."],
- "name": ["665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A."]
- }
- }]
- }
- },{
- "type": ["h-card"],
- "properties": {
- "name": ["Mitchell Baker"],
- "org": ["Mozilla"],
- "adr": [{
- "value": "665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A.",
- "type": ["h-adr"],
- "properties": {
- "street-address": ["665 3rd St."],
- "extended-address": ["Suite 207"],
- "locality": ["San Francisco"],
- "region": ["CA"],
- "postal-code": ["94107"],
- "country-name": ["U.S.A."],
- "name": ["665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A."]
- }
- }]
- }
- }]
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/test.json b/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/test.json
deleted file mode 100644
index 94d1953..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/hcarditemref/test.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "itemref include pattern - h-card",
- "description": "h-card",
- "author": "Glenn Jones"
-}
\ No newline at end of file
diff --git a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/heventitemref/input.html b/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/heventitemref/input.html
deleted file mode 100644
index cef8865..0000000
--- a/vendor/mf2/mf2/tests/test-suite/test-suite-data/includes/heventitemref/input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-