{"id":1655,"date":"2009-12-21T22:15:20","date_gmt":"2009-12-21T22:15:20","guid":{"rendered":"https:\/\/www.diaryofanadi.co.uk\/?p=1655"},"modified":"2009-12-21T22:15:20","modified_gmt":"2009-12-21T22:15:20","slug":"mysql-find-replace","status":"publish","type":"post","link":"https:\/\/diaryofanadi.co.uk\/?p=1655","title":{"rendered":"MySQL Find &#038; Replace"},"content":{"rendered":"<p>As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest WordPress update), I noticed a whole heap of\u00a0 &#8216;\u00c2&#8217; symbols had appeared in my previous posts.<\/p>\n<p>I started to edit them out, then realised there must be a better way. Thanks to <a title=\"Brad J Frey Blog\" href=\"http:\/\/bradyjfrey.com\/blog\/mysql\/how-to-find-and-replace-in-mysql-phpmyadmin\/\" target=\"_blank\" rel=\"noopener noreferrer\"> Brad J Frey&#8217;s blog<\/a>, I fixed it in about 15 seconds.<\/p>\n<p>All you have to do is log into your PHPMyAdmin control panel for the database you want to change, then choose the SQL button, as shown here:<\/p>\n<div id=\"attachment_1656\" style=\"width: 590px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" aria-describedby=\"caption-attachment-1656\" class=\"size-full wp-image-1656 lazyload\" title=\"PHPMyAdmin For Database\" data-src=\"https:\/\/www.diaryofanadi.co.uk\/wp-content\/uploads\/2009\/12\/sql_1.gif\" alt=\"PHPMyAdmin For Database\" width=\"580\" height=\"438\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 580px; --smush-placeholder-aspect-ratio: 580\/438;\" \/><p id=\"caption-attachment-1656\" class=\"wp-caption-text\">PHPMyAdmin For Database<\/p><\/div>\n<p>This opens up a window &#8211; make sure you select the SQL tab:<\/p>\n<div id=\"attachment_1657\" style=\"width: 589px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" aria-describedby=\"caption-attachment-1657\" class=\"size-full wp-image-1657 lazyload\" title=\"MySQL Query Window\" data-src=\"https:\/\/www.diaryofanadi.co.uk\/wp-content\/uploads\/2009\/12\/sql_2.gif\" alt=\"MySQL Query Window\" width=\"579\" height=\"301\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 579px; --smush-placeholder-aspect-ratio: 579\/301;\" \/><p id=\"caption-attachment-1657\" class=\"wp-caption-text\">MySQL Query Window<\/p><\/div>\n<p>This is the query I used to get rid of the \u00c2 symbols:<\/p>\n<p><span style=\"color: #008000;\">UPDATE `wp_posts` SET post_content = replace(post_content,&#8221;\u00c2&#8221;,&#8221;&#8221;); <\/p>\n<p>The general format is:<\/p>\n<p><span style=\"color: #008000;\">UPDATE `tablename` SET fieldname = replace(fieldname,&#8221;what-to-replace&#8221;,&#8221;what-to-replace-with&#8221;); <\/p>\n<p>Just hit GO and the replace operation\u00a0is done very quickly.<\/p>\n<p> <strong>EDIT 22\/12\/2009: But even better than this, I found a plugin for WordPress which does the search and replace for you. Thanks to <\/strong>  <strong>thedeadone.net<\/strong> <strong> for that. It&#8217;s much better.<\/strong> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest WordPress update), I noticed a whole heap of\u00a0 &#8216;\u00c2&#8217; symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey&#8217;s blog, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[121],"tags":[],"class_list":["post-1655","post","type-post","status-publish","format-standard","hentry","category-latestposts"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of &#039;\u00c2&#039; symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey&#039;s blog,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"DOAADI\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/diaryofanadi.co.uk\/?p=1655\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Diary Of An ADI - A Driving Instructor&#039;s Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"MySQL Find &amp; Replace - Diary Of An ADI\" \/>\n\t\t<meta property=\"og:description\" content=\"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of &#039;\u00c2&#039; symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey&#039;s blog,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/diaryofanadi.co.uk\/?p=1655\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-12-21T22:15:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2009-12-21T22:15:20+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"MySQL Find &amp; Replace - Diary Of An ADI\" \/>\n\t\t<meta name=\"twitter:description\" content=\"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of &#039;\u00c2&#039; symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey&#039;s blog,\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#blogposting\",\"name\":\"MySQL Find & Replace - Diary Of An ADI\",\"headline\":\"MySQL Find &#038; Replace\",\"author\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.diaryofanadi.co.uk\\\/wp-content\\\/uploads\\\/2009\\\/12\\\/sql_1.gif\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655\\\/#articleImage\"},\"datePublished\":\"2009-12-21T22:15:20+01:00\",\"dateModified\":\"2009-12-21T22:15:20+01:00\",\"inLanguage\":\"en-GB\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#webpage\"},\"articleSection\":\"Latest Posts\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/diaryofanadi.co.uk\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?cat=121#listItem\",\"name\":\"Latest Posts\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?cat=121#listItem\",\"position\":2,\"name\":\"Latest Posts\",\"item\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?cat=121\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#listItem\",\"name\":\"MySQL Find &#038; Replace\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#listItem\",\"position\":3,\"name\":\"MySQL Find &#038; Replace\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?cat=121#listItem\",\"name\":\"Latest Posts\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/#person\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?author=2#author\",\"url\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?author=2\",\"name\":\"DOAADI\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b66a27a7421ee4ad46fcecfdc7961aa5bffbecb103dd9d01f37875b7c8c09b48?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"DOAADI\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#webpage\",\"url\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655\",\"name\":\"MySQL Find & Replace - Diary Of An ADI\",\"description\":\"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of '\\u00c2' symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey's blog,\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?p=1655#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/?author=2#author\"},\"datePublished\":\"2009-12-21T22:15:20+01:00\",\"dateModified\":\"2009-12-21T22:15:20+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/#website\",\"url\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/\",\"name\":\"Diary Of An ADI\",\"alternateName\":\"DOAADI\",\"description\":\"A Driving Instructor's Blog\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/diaryofanadi.co.uk\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>MySQL Find &amp; Replace - Diary Of An ADI<\/title>\n\n","aioseo_head_json":{"title":"MySQL Find & Replace - Diary Of An ADI","description":"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of '\u00c2' symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey's blog,","canonical_url":"https:\/\/diaryofanadi.co.uk\/?p=1655","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#blogposting","name":"MySQL Find & Replace - Diary Of An ADI","headline":"MySQL Find &#038; Replace","author":{"@id":"https:\/\/diaryofanadi.co.uk\/?author=2#author"},"publisher":{"@id":"https:\/\/diaryofanadi.co.uk\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/www.diaryofanadi.co.uk\/wp-content\/uploads\/2009\/12\/sql_1.gif","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655\/#articleImage"},"datePublished":"2009-12-21T22:15:20+01:00","dateModified":"2009-12-21T22:15:20+01:00","inLanguage":"en-GB","mainEntityOfPage":{"@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#webpage"},"isPartOf":{"@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#webpage"},"articleSection":"Latest Posts"},{"@type":"BreadcrumbList","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk#listItem","position":1,"name":"Home","item":"https:\/\/diaryofanadi.co.uk","nextItem":{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk\/?cat=121#listItem","name":"Latest Posts"}},{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk\/?cat=121#listItem","position":2,"name":"Latest Posts","item":"https:\/\/diaryofanadi.co.uk\/?cat=121","nextItem":{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#listItem","name":"MySQL Find &#038; Replace"},"previousItem":{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#listItem","position":3,"name":"MySQL Find &#038; Replace","previousItem":{"@type":"ListItem","@id":"https:\/\/diaryofanadi.co.uk\/?cat=121#listItem","name":"Latest Posts"}}]},{"@type":"Person","@id":"https:\/\/diaryofanadi.co.uk\/#person"},{"@type":"Person","@id":"https:\/\/diaryofanadi.co.uk\/?author=2#author","url":"https:\/\/diaryofanadi.co.uk\/?author=2","name":"DOAADI","image":{"@type":"ImageObject","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/b66a27a7421ee4ad46fcecfdc7961aa5bffbecb103dd9d01f37875b7c8c09b48?s=96&d=mm&r=g","width":96,"height":96,"caption":"DOAADI"}},{"@type":"WebPage","@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#webpage","url":"https:\/\/diaryofanadi.co.uk\/?p=1655","name":"MySQL Find & Replace - Diary Of An ADI","description":"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of '\u00c2' symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey's blog,","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/diaryofanadi.co.uk\/#website"},"breadcrumb":{"@id":"https:\/\/diaryofanadi.co.uk\/?p=1655#breadcrumblist"},"author":{"@id":"https:\/\/diaryofanadi.co.uk\/?author=2#author"},"creator":{"@id":"https:\/\/diaryofanadi.co.uk\/?author=2#author"},"datePublished":"2009-12-21T22:15:20+01:00","dateModified":"2009-12-21T22:15:20+01:00"},{"@type":"WebSite","@id":"https:\/\/diaryofanadi.co.uk\/#website","url":"https:\/\/diaryofanadi.co.uk\/","name":"Diary Of An ADI","alternateName":"DOAADI","description":"A Driving Instructor's Blog","inLanguage":"en-GB","publisher":{"@id":"https:\/\/diaryofanadi.co.uk\/#person"}}]},"og:locale":"en_GB","og:site_name":"Diary Of An ADI - A Driving Instructor's Blog","og:type":"article","og:title":"MySQL Find &amp; Replace - Diary Of An ADI","og:description":"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of '\u00c2' symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey's blog,","og:url":"https:\/\/diaryofanadi.co.uk\/?p=1655","article:published_time":"2009-12-21T22:15:20+00:00","article:modified_time":"2009-12-21T22:15:20+00:00","twitter:card":"summary_large_image","twitter:title":"MySQL Find &amp; Replace - Diary Of An ADI","twitter:description":"As an artefact to upgrading my database from mySQL 4.0 to mySQL 5.0 (so I could apply the latest Wordpress update), I noticed a whole heap of '\u00c2' symbols had appeared in my previous posts. I started to edit them out, then realised there must be a better way. Thanks to Brad J Frey's blog,"},"aioseo_meta_data":{"post_id":"1655","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-05-21 02:26:56","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":null,"created":"2022-10-14 22:40:15","updated":"2026-05-21 02:26:56"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/diaryofanadi.co.uk\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/diaryofanadi.co.uk\/?cat=121\" title=\"Latest Posts\">Latest Posts<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tMySQL Find &amp; Replace\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/diaryofanadi.co.uk"},{"label":"Latest Posts","link":"https:\/\/diaryofanadi.co.uk\/?cat=121"},{"label":"MySQL Find &#038; Replace","link":"https:\/\/diaryofanadi.co.uk\/?p=1655"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/1655","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1655"}],"version-history":[{"count":0,"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/1655\/revisions"}],"wp:attachment":[{"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1655"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1655"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/diaryofanadi.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1655"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}