From 0cae6146c19f6dde8286649d422fe4bc9ffe7371 Mon Sep 17 00:00:00 2001 From: Danny Berger Date: Wed, 3 Jun 2015 16:43:33 -0600 Subject: [PATCH] Fix typo --- blog/_posts/2015-05-01-parsing-microdata-in-php.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/_posts/2015-05-01-parsing-microdata-in-php.md b/blog/_posts/2015-05-01-parsing-microdata-in-php.md index 16849f8..0be202a 100644 --- a/blog/_posts/2015-05-01-parsing-microdata-in-php.md +++ b/blog/_posts/2015-05-01-parsing-microdata-in-php.md @@ -6,7 +6,7 @@ description: "Open sourcing a library to easily traverse HTML for microdata." code: https://github.com/dpb587/microdata-dom.php --- -A couple years I wrote about how I was [adding microdata][3] to [The Loopy Ewe][1] website to annotate things like products, brands, and contact details. I later wrote about how the internal search engine [depended on that microdata][4] for search results. During development and the initial release I was using some basic [XPath][2] queries, but as time passed the implementation became more fragile and incomplete. Since then, the parser has gone through several refactorings and this week I was able to extract it into a separate library that I can [open source][9]. +A couple years ago I wrote about how I was [adding microdata][3] to [The Loopy Ewe][1] website to annotate things like products, brands, and contact details. I later wrote about how the internal search engine [depended on that microdata][4] for search results. During development and the initial release I was using some basic [XPath][2] queries, but as time passed the implementation became more fragile and incomplete. Since then, the parser has gone through several refactorings and this week I was able to extract it into a separate library that I can [open source][9]. ## Implementation