{"id":88649,"date":"2021-09-15T14:24:51","date_gmt":"2021-09-15T18:24:51","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=88649"},"modified":"2021-11-02T14:21:04","modified_gmt":"2021-11-02T18:21:04","slug":"nxml-mode","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/","title":{"rendered":"How to Edit XML Files With nXML Mode in Emacs"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png\" alt=\"Edit XML with nXML mode\" class=\"wp-image-88651\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nXML files have become an important part of the web landscape.  There may be a time, or there has already been a time, in which you need to edit one of these files in a meaningful way.  For users of the Emacs text editor, there is an easy-to-use built-in editing mode just for XML files.  This <code>nXML<\/code> mode makes it so much easier to edit XML files that you\u2019ll wonder how you went without it for so long.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#what-is-nxml\">What is nXML Mode<\/a><\/li><li><a href=\"#how-to-activate\">How To Activate nXML Mode<\/a><\/li><li><a href=\"#quick-tag\">Quick Tagging<\/a>\n<ul>\n<li><a href=\"#org00e1e5c\">Auto Insert End Tag On Line<\/a><\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<p> XML comes with a variety of different \u201cschema\u201d for how the content is organized.  The good news is that you can use nXML mode for editing any kind of schema you need.   <\/p>\n\n\n\n<p class=\"alert alert-info\">Get a better overview on the differences between <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vs-vps\">VPS vs cloud<\/a> hosting, and why it matters.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-nxml\">What is nXML Mode<\/h2>\n\n\n\n<p> nXML mode is a built-in major mode for the Emacs text editor which lets you more easily edit XML files.  This mode provides: <\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li>Syntax highlighting of tags, which makes it easier to identify the tags and schema the file is using<\/li><li>Auto completing of code<\/li><li>Features for identifying different schema in existing files<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-activate\">How To Activate nXML Mode<\/h2>\n\n\n\n<p> This mode is built into Emacs already, so if you open an XML file on your server Emacs will be able to auto-detect the mode listing for XML files and automatically turn on nXML mode. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"quick-tag\">Quick Tagging<\/h2>\n\n\n\n<p>\nEditing XML files is especially time-consuming because of the insertion of multiple tags.  Just like an HTML file, an XML file assigns meaning to different pieces of content by enveloping them in tags that typically begin with <code>&lt;<\/code> and end in <code>&gt;<\/code>.  With xXML mode you can easily auto-complete an opening tag with an \u201cend tag\u201d by providing a few simple keystrokes.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"org00e1e5c\">Auto Insert End Tag On Line<\/h3>\n\n\n\n<p>\nThe first option you have for enclosing a tag basically gives the end tag on the same line and places your cursor between the opening and closing.  For example, if you have a tag for \u201cdate\u201d, you can start typing it like so:\n<\/p>\n\n\n\n<pre id=\"org76ca405\" class=\"wp-block-preformatted example\">&lt;date\n<\/pre>\n\n\n\n<p>With your cursor landing after the \u201ce\u201d in date, you can simply type <kbd>C-c C-i<\/kbd>.<\/p>\n\n\n\n<p>\nYour final output will look like this:\n<\/p>\n\n\n\n<pre id=\"org6dbdaf7\" class=\"wp-block-preformatted example\">&lt;date&gt;&lt;\/date&gt;<\/pre>\n\n\n\n<p> You will notice you cursor placed between the opening and closing tag.  Remember, in Emacs, the key you enter is placed behind the character on which your cursor is resting.  This means your cursor will be resting on the <code>&lt;<\/code> in <code>&lt;\/date&gt;<\/code>.  Just start typing and your content will be placed in between the two tags. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Line Break Between Tags<\/h3>\n\n\n\n<p>For some users it would be preferable to have their cursor rest between the two tags on a new line.  In order to set your tags apart with a line break between them, you can run the <meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\"><kbd>C-c C-b<\/kbd> command.  Your result will look like this:<\/p>\n\n\n\n<pre id=\"org6dbdaf7\" class=\"wp-block-preformatted example\">&lt;date&gt;\n\n&lt;\/date&gt;<\/pre>\n\n\n\n<p> You will notice you cursor placed between the opening and closing tag, but this time it will be on its own line.  Remember, in order to run this command properly your must be initially resting on the opening tag itself.<\/p>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p> Well done!  You now know how to use nXML mode in Emacs.  For other information about how you can expand and go in more depth on nXML mode, check out the <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/info\/\">info page<\/a>, which should already be installed in your system. <\/p>\n\n\n<!-- Shortcode [cloud-server-cta5] does not exist -->\n","protected":false},"excerpt":{"rendered":"<p>XML files have become an important part of the web landscape. There may be a time, or there has already been a time, in which you need to edit one of these files in a meaningful way. For users of the Emacs text editor, there is an easy-to-use built-in editing mode just for XML files.<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4396],"tags":[],"class_list":["post-88649","post","type-post","status-publish","format-standard","hentry","category-emacs"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Edit XML Files With nXML Mode in Emacs<\/title>\n<meta name=\"description\" content=\"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It&#039;s all included.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Edit XML Files With nXML Mode in Emacs\" \/>\n<meta property=\"og:description\" content=\"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It&#039;s all included.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-15T18:24:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-02T18:21:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\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:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Edit XML Files With nXML Mode in Emacs\",\"datePublished\":\"2021-09-15T18:24:51+00:00\",\"dateModified\":\"2021-11-02T18:21:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\"},\"wordCount\":572,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png\",\"articleSection\":[\"Emacs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\",\"name\":\"How to Edit XML Files With nXML Mode in Emacs\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png\",\"datePublished\":\"2021-09-15T18:24:51+00:00\",\"dateModified\":\"2021-11-02T18:21:04+00:00\",\"description\":\"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It's all included.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png\",\"width\":1200,\"height\":630,\"caption\":\"Edit XML with nXML mode\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Edit XML Files With nXML Mode in Emacs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Edit XML Files With nXML Mode in Emacs","description":"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It's all included.","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:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/","og_locale":"en_US","og_type":"article","og_title":"How to Edit XML Files With nXML Mode in Emacs","og_description":"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It's all included.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-09-15T18:24:51+00:00","article_modified_time":"2021-11-02T18:21:04+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Edit XML Files With nXML Mode in Emacs","datePublished":"2021-09-15T18:24:51+00:00","dateModified":"2021-11-02T18:21:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/"},"wordCount":572,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png","articleSection":["Emacs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/","name":"How to Edit XML Files With nXML Mode in Emacs","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs-1024x538.png","datePublished":"2021-09-15T18:24:51+00:00","dateModified":"2021-11-02T18:21:04+00:00","description":"With nXML mode in Emacs you can easily and quickly edit XML files without having to add any special settings to you editor. It's all included.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/09\/How-To-Edit-XML-Files-With-nXML-Mode-in-Emacs.png","width":1200,"height":630,"caption":"Edit XML with nXML mode"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/nxml-mode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Edit XML Files With nXML Mode in Emacs"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4396,"name":"Emacs","slug":"emacs","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/88649","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=88649"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/88649\/revisions"}],"predecessor-version":[{"id":90920,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/88649\/revisions\/90920"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=88649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=88649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=88649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}