{"id":12057,"date":"2011-10-11T10:15:19","date_gmt":"2011-10-11T10:15:19","guid":{"rendered":"http:\/\/www.learnexcelmacro.com\/?p=21"},"modified":"2022-08-07T20:02:37","modified_gmt":"2022-08-07T20:02:37","slug":"save-and-close-an-excel-sheet-using-macro","status":"publish","type":"post","link":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/","title":{"rendered":"Excel VBA Tutorial – Save and Close Excel workbook"},"content":{"rendered":"

Step by Step Guide to Save and Close Workbooks<\/h1>\n
\n

Index:<\/h2>\n
\n
    \n
  1. Save and close all open workbooks including current one<\/li>\n
  2. Save and close all open workbooks without closing the current one<\/li>\n
  3. Save and close a specific workbook<\/li>\n
  4. Save and close a current workbook Only<\/li>\n
  5. Close a workbook without saving it<\/li>\n<\/ol>\n<\/div>\n

    While closing an Excel workbook manually, you would have noticed this confirmation popup before it closes. <\/p>\n

    \"Closing

    Closing Excel Workbook – VBA<\/p><\/div>\n

    The user is asked to save the changes before closing it. When you try to close an excel workbook programmatically, then you need to provide this choice before closing it – Whether you want to save it before closing or discard the changes.<\/p>\n

    This is the statement that is used to close a Workbook. ThisWorkbook.Close savechanges:=True<\/code><\/span> The parameter savechanges:=True<\/code><\/span> or savechanges:=False<\/code><\/span> is set according to your preference.
    \nNote:<\/strong> That ThisWorkbook<\/code> is current workbook object. That means after executing the above statement, the same workbook will be closed where the statement is executed.
    \nLet’s take a look at a few examples.<\/p>\n

    How to save and close all open workbooks including current one<\/h1>\n

    In this example, we are going to save and close all open workbooks including the current one, where this VBA code is running. Since you need to close the current workbook too, you need to make sure that the Save and Close <\/code><\/span> command is executed for the current workbook at last. You can see in the below code, that before closing any workbook from Workbooks <\/code> Object which is basically a collection of all Open Workbooks, I am checking the name of the workbook and if it is matching with the current workbook name, which is ThisWorkbook<\/code> Object. If it is not the same, then close it else move to the next Workbook. Once all the workbooks are closed except current one, you can close the current workbook.<\/p>\n

    \r\nSub SaveClose()\r\nDim Wb As Workbook\r\nFor Each Wb In Workbooks\r\nIf Wb.Name <> ThisWorkbook.Name Then\r\nWb.Close savechanges:=True\r\nEnd If\r\nNext Wb\r\nThisWorkbook.Close savechanges:=True\r\nEnd Sub<\/code><\/pre>\n

    How to save and close all open workbooks without closing the current one<\/h1>\n

    Sometimes you need to close all the workbook before you run your macro in an excel workbook. In such case, you can use following code to close all open workbooks except the current one where the code is running.<\/p>\n

    \r\nSub SaveClose()\r\nDim Wb As Workbook\r\nFor Each Wb In Workbooks\r\nIf Wb.Name <> ThisWorkbook.Name Then\r\nWb.Close savechanges:=True\r\nEnd If\r\nNext Wb\r\nEnd Sub<\/code><\/pre>\n

    How to save and close a specific workbook<\/h1>\n

    .close<\/code> method can be executed on any Worbook object which can close the workbook.<\/p>\n

    \r\nSub SaveClose()\r\nWorkbooks(\"YourExcelWorkbook.xls\").Close savechanges:=True\r\nEnd Sub<\/code><\/pre>\n

    How to save and close a current workbook Only<\/h1>\n

    As mentioned before, we can execute .close<\/code> method on Current Workbook, which is ThisWorkbook<\/code><\/p>\n

    \r\nSub SaveClose()\r\nThisWorkbook.Close savechanges:=True\r\nEnd Sub<\/code><\/pre>\n

    How to close a workbook without saving it<\/h1>\n

    It is simple, all you need to do is pass the savechanges:=True<\/code> parameter to False<\/code>.<\/p>\n

    \r\nSub SaveClose()\r\nThisWorkbook.Close savechanges:=False\r\nEnd Sub<\/code><\/pre>\n<\/span>","protected":false},"excerpt":{"rendered":"

    Step by Step Guide to Save and Close Workbooks Index: Save and close all open workbooks including current one Save and close all open workbooks without closing the current one Save and close a specific workbook Save and close a current workbook Only Close a workbook without saving it While closing an Excel workbook manually, […]<\/p>\n","protected":false},"author":45,"featured_media":242685,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[1246],"tags":[],"class_list":["post-12057","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-macro"],"yoast_head":"\nExcel VBA Tutorial - Save and Close Excel workbook - Let's excel in Excel<\/title>\n<meta name=\"description\" content=\"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Excel VBA Tutorial - Save and Close Excel workbook\" \/>\n<meta property=\"og:description\" content=\"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\" \/>\n<meta property=\"og:site_name\" content=\"Let's excel in Excel\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/vmlogger\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/vmlogger\" \/>\n<meta property=\"article:published_time\" content=\"2011-10-11T10:15:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-07T20:02:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"250\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vishwamitra Mishra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/www.twitter.com\/learnexcelmacro\" \/>\n<meta name=\"twitter:site\" content=\"@learnexcelmacro\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vishwamitra Mishra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\"},\"author\":{\"name\":\"Vishwamitra Mishra\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"headline\":\"Excel VBA Tutorial – Save and Close Excel workbook\",\"datePublished\":\"2011-10-11T10:15:19+00:00\",\"dateModified\":\"2022-08-07T20:02:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\"},\"wordCount\":430,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png\",\"articleSection\":[\"Excel Macro\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\",\"name\":\"Excel VBA Tutorial - Save and Close Excel workbook - Let's excel in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png\",\"datePublished\":\"2011-10-11T10:15:19+00:00\",\"dateModified\":\"2022-08-07T20:02:37+00:00\",\"description\":\"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving\",\"breadcrumb\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png\",\"width\":400,\"height\":250,\"caption\":\"Save and Close - Excel Workbook\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vmlogger.com\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Macro\",\"item\":\"https:\/\/vmlogger.com\/excel\/macro\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Excel VBA Tutorial – Save and Close Excel workbook\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#website\",\"url\":\"https:\/\/vmlogger.com\/excel\/\",\"name\":\"Let's excel in Excel\",\"description\":\"Let's share knowledge\",\"publisher\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/vmlogger.com\/excel\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5\",\"name\":\"Vishwamitra Mishra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png\",\"contentUrl\":\"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png\",\"width\":528,\"height\":560,\"caption\":\"Vishwamitra Mishra\"},\"logo\":{\"@id\":\"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/\"},\"description\":\"My name is Vishwamitra Mishra. Friends Call me Vishwa. I hold a Bachelor\u2019s Degree in Computer Science from D.A.V.V. Indore & currently working as a Technical Lead having over 7 years of experience.\",\"sameAs\":[\"http:\/\/www.learnexcelmacro.com\",\"http:\/\/www.facebook.com\/vmlogger\",\"https:\/\/x.com\/https:\/\/www.twitter.com\/learnexcelmacro\",\"https:\/\/www.youtube.com\/c\/VMLogger\"],\"url\":\"https:\/\/vmlogger.com\/excel\/author\/vishwamitra\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Excel VBA Tutorial - Save and Close Excel workbook - Let's excel in Excel","description":"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/","og_locale":"en_US","og_type":"article","og_title":"Excel VBA Tutorial - Save and Close Excel workbook","og_description":"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving","og_url":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/","og_site_name":"Let's excel in Excel","article_publisher":"http:\/\/www.facebook.com\/vmlogger","article_author":"http:\/\/www.facebook.com\/vmlogger","article_published_time":"2011-10-11T10:15:19+00:00","article_modified_time":"2022-08-07T20:02:37+00:00","og_image":[{"width":400,"height":250,"url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png","type":"image\/png"}],"author":"Vishwamitra Mishra","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/www.twitter.com\/learnexcelmacro","twitter_site":"@learnexcelmacro","twitter_misc":{"Written by":"Vishwamitra Mishra","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#article","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/"},"author":{"name":"Vishwamitra Mishra","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"headline":"Excel VBA Tutorial – Save and Close Excel workbook","datePublished":"2011-10-11T10:15:19+00:00","dateModified":"2022-08-07T20:02:37+00:00","mainEntityOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/"},"wordCount":430,"commentCount":0,"publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png","articleSection":["Excel Macro"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/","url":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/","name":"Excel VBA Tutorial - Save and Close Excel workbook - Let's excel in Excel","isPartOf":{"@id":"https:\/\/vmlogger.com\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage"},"image":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage"},"thumbnailUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png","datePublished":"2011-10-11T10:15:19+00:00","dateModified":"2022-08-07T20:02:37+00:00","description":"Excel macro to save and close the workbook. Save and close the workbook using Excel VBA. Macro to close an excel workbook with or without saving","breadcrumb":{"@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#primaryimage","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2011\/10\/save-and-close-workbook.png","width":400,"height":250,"caption":"Save and Close - Excel Workbook"},{"@type":"BreadcrumbList","@id":"https:\/\/vmlogger.com\/excel\/2011\/10\/save-and-close-an-excel-sheet-using-macro\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vmlogger.com\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Macro","item":"https:\/\/vmlogger.com\/excel\/macro\/"},{"@type":"ListItem","position":3,"name":"Excel VBA Tutorial – Save and Close Excel workbook"}]},{"@type":"WebSite","@id":"https:\/\/vmlogger.com\/excel\/#website","url":"https:\/\/vmlogger.com\/excel\/","name":"Let's excel in Excel","description":"Let's share knowledge","publisher":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vmlogger.com\/excel\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/7500a107b0b2d35a8492acf0d11fc8e5","name":"Vishwamitra Mishra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/","url":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png","contentUrl":"https:\/\/vmlogger.com\/excel\/wp-content\/uploads\/sites\/11\/2022\/07\/avataaars-1.png","width":528,"height":560,"caption":"Vishwamitra Mishra"},"logo":{"@id":"https:\/\/vmlogger.com\/excel\/#\/schema\/person\/image\/"},"description":"My name is Vishwamitra Mishra. Friends Call me Vishwa. I hold a Bachelor\u2019s Degree in Computer Science from D.A.V.V. Indore & currently working as a Technical Lead having over 7 years of experience.","sameAs":["http:\/\/www.learnexcelmacro.com","http:\/\/www.facebook.com\/vmlogger","https:\/\/x.com\/https:\/\/www.twitter.com\/learnexcelmacro","https:\/\/www.youtube.com\/c\/VMLogger"],"url":"https:\/\/vmlogger.com\/excel\/author\/vishwamitra\/"}]}},"_links":{"self":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/12057"}],"collection":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/users\/45"}],"replies":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/comments?post=12057"}],"version-history":[{"count":0,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/posts\/12057\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media\/242685"}],"wp:attachment":[{"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/media?parent=12057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/categories?post=12057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vmlogger.com\/excel\/wp-json\/wp\/v2\/tags?post=12057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}