{"id":73244,"date":"2021-05-27T12:53:28","date_gmt":"2021-05-27T16:53:28","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=73244"},"modified":"2021-11-23T16:55:47","modified_gmt":"2021-11-23T21:55:47","slug":"case-conversion","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/","title":{"rendered":"Be Case Sensitive With Case Conversion 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\/05\/Case-Conversion-in-Emacs-1024x538.png\" alt=\"\" class=\"wp-image-73245\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-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> There are case conversion commands built into Emacs that convert the case (upper case or lower case) for individual words, words in a series (including words searched or selected by regular expressions), or complete highlighted regions of text (like paragraphs, or multiple paragraphs in a series, or even multiple paragraphs selected by regular expressions).  Case conversion commands can help you save extra typing and allow more flexibility in writing your own custom Emacs functions.  <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#case\">Case Conversion on Words<\/a>\n<ul>\n<li><a href=\"#lower-case\">Convert Word to Lower Case with <code>M-l<\/code><\/a><\/li>\n<li><a href=\"#upper-case\">Convert Word to Upper Case<\/a><\/li>\n<li><a href=\"#capitalize\">Capitalize the Following Word<\/a><\/li>\n<\/ul>\n<\/li><li><a href=\"#case-on-region\">Case Conversion on Regions<\/a>\n<ul>\n<li><a href=\"#convert-region-lower-case\">Convert a Region to Lower Case<\/a><\/li>\n<li><a href=\"#convert-region-upper-case\">Convert a Region to Upper Case<\/a><\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"case\">Case Conversion on Words<\/h2>\n\n\n\n<p>\nAll of the commands for making individual words upper or lower case follow successively to the next word.  This means you can keep running the command over each word in your sentence, as needed, from the start of the sentence to the end.\n<\/p>\n\n\n\n<p> Take note that all of these commands operate on the <i>following<\/i> word after point.  This means if your cursor is at the end of word, the <i>next<\/i> word will be placed in upper or lower case. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"lower-case\">Convert Word to Lower Case with <code>M-l<\/code><\/h3>\n\n\n\n<p>\n<code>M-l<\/code> runs the command <code>downcase-word<\/code>, which converts an entire word to lower case.\n<\/p>\n\n\n\n<p>\nUpper case letters at the beginning of a word will be converted to lower case:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">Escape &gt; escape\n<\/pre>\n\n\n\n<p>\nFully capitalized words are also converted to lower case:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">ESCAPE &gt; escape\n<\/pre>\n\n\n\n<p>\nUpper case letters at <i>any<\/i> point in the word are converted:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">esCape &gt; escape\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"upper-case\">Convert Word to Upper Case<\/h3>\n\n\n\n<p>\n<code>M-u<\/code> runs the command <code>upcase-word<\/code>, which converts all letters to upper case.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">escape &gt; ESCAPE\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"capitalize\">Capitalize the Following Word<\/h3>\n\n\n\n<p>\nIn many instances, you may want to capitalize only the first letter in a string of text.  For these situations you can use <code>M-c<\/code> to run the command <code>capitalize-word<\/code>.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted example\">escape &gt; Escape\n<\/pre>\n\n\n\n<p>\nNotice that <code>capitalize-word<\/code> will only place the first letter in the word into upper case.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"case-on-region\">Case Conversion on Regions<\/h2>\n\n\n\n<p>\nRunning case conversion on a region of text is an easy way to apply your desired conversion on a larger string of text at one time.\n<\/p>\n\n\n\n<p>\nNote that the following region commands have been disabled in Emacs, but as you run them you will be prompted with a message explaining why, and you can select to proceed and enable the commands, or try them out once and keep them disabled.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"convert-region-lower-case\">Convert a Region to Lower Case<\/h3>\n\n\n\n<p>\nWith <code>C-x C-l<\/code> you can run the command <code>downcase-region<\/code>, which will convert the entire highlighted region to lower case.\n<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Highlight a region of text with the mark function (<code>C-SPC<\/code>)<\/li><li>Press <code>C-x C-l<\/code><\/li><\/ol>\n\n\n\n<p>\nNotice that all upper case letters are converted into lower case.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"convert-region-upper-case\">Convert a Region to Upper Case<\/h3>\n\n\n\n<p>\nConversely, you can upper case an entire region using <code>C-x C-u<\/code>, which will run the <code>upcase-region<\/code> command.\n<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Highlight a region of text with the mark function (<code>C-SPC<\/code>)<\/li><li>Press <code>C-x C-u<\/code><\/li><\/ol>\n\n\n\n<p>\nNotice as each word is converted into upper case.  Note that this command does not capitalize the first letters of words but rather places every letter in upper case.\n<\/p>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p>\nThese helpful commands can be used as one-off functions to be performed as needed or built into your own custom functions.  For more information about Emacs be sure to check out the <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/\">Emacs education channel<\/a>.  To see if Emacs is installed in your <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">VPS account<\/a> feel free to contact <a href=\"https:\/\/www.inmotionhosting.com\/support\/amp\/how-to-get-great-technical-support\/\">24\/7 live support<\/a> any time.\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are case conversion commands built into Emacs that convert the case (upper case or lower case) for individual words, words in a series (including words searched or selected by regular expressions), or complete highlighted regions of text (like paragraphs, or multiple paragraphs in a series, or even multiple paragraphs selected by regular expressions). Case<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\"> 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-73244","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>Be Case Sensitive With Case Conversion in Emacs<\/title>\n<meta name=\"description\" content=\"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.\" \/>\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\/case-conversion\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Be Case Sensitive With Case Conversion in Emacs\" \/>\n<meta property=\"og:description\" content=\"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\" \/>\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-05-27T16:53:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-23T21:55:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-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\/case-conversion\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Be Case Sensitive With Case Conversion in Emacs\",\"datePublished\":\"2021-05-27T16:53:28+00:00\",\"dateModified\":\"2021-11-23T21:55:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\"},\"wordCount\":541,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-1024x538.png\",\"articleSection\":[\"Emacs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\",\"name\":\"Be Case Sensitive With Case Conversion in Emacs\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-1024x538.png\",\"datePublished\":\"2021-05-27T16:53:28+00:00\",\"dateModified\":\"2021-11-23T21:55:47+00:00\",\"description\":\"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Be Case Sensitive With Case Conversion 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":"Be Case Sensitive With Case Conversion in Emacs","description":"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.","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\/case-conversion\/","og_locale":"en_US","og_type":"article","og_title":"Be Case Sensitive With Case Conversion in Emacs","og_description":"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-05-27T16:53:28+00:00","article_modified_time":"2021-11-23T21:55:47+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-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\/case-conversion\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Be Case Sensitive With Case Conversion in Emacs","datePublished":"2021-05-27T16:53:28+00:00","dateModified":"2021-11-23T21:55:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/"},"wordCount":541,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-1024x538.png","articleSection":["Emacs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/","name":"Be Case Sensitive With Case Conversion in Emacs","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs-1024x538.png","datePublished":"2021-05-27T16:53:28+00:00","dateModified":"2021-11-23T21:55:47+00:00","description":"Case sensitivity matters, and case conversion commands in Emacs save you time by speeding up your workflow or augmenting your own functions.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/05\/Case-Conversion-in-Emacs.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/case-conversion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Be Case Sensitive With Case Conversion 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\/73244","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=73244"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/73244\/revisions"}],"predecessor-version":[{"id":92472,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/73244\/revisions\/92472"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=73244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=73244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=73244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}