{"id":57471,"date":"2020-07-17T10:21:42","date_gmt":"2020-07-17T14:21:42","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=57471"},"modified":"2022-02-22T09:05:06","modified_gmt":"2022-02-22T14:05:06","slug":"how-to-wrap-text-in-emacs","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/","title":{"rendered":"How to Wrap Text 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\/2022\/02\/Emacs-Text-Wrap-1024x538.png\" alt=\"Emacs Text Wrap\" class=\"wp-image-94323\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>Emacs is a high level open source cross platform text editor.  The first time you open Emacs you might start typing and realize your text rolls right past the right margin of your editor frame and continues into nowhere. For most users, wrapping text (or, soft wrap) is more visually appealing, and helps keep a natural flow. <\/p>\n\n\n\n<p>\nThere are two ways to enable text wrapping in emacs:\n<\/p>\n\n\n\n<div id=\"text-table-of-contents\">\n<ul>\n<li><a href=\"#file-wrap-text-emacs\">How to wrap text in current file<\/a><\/li>\n<li><a href=\"#all-files-wrap-text-emacs\">How to wrap text in all files<\/a><\/li>\n<\/ul>\n<\/div>\n\n\n\n<p class=\"alert alert-info\">Emacs is an old text editor with its sort of dialect. In Emacs speak, the \u201cAlt\u201d key on your keyboard is known as the \u201cMeta\u201d or \u201cM\u201d key.  So if you see instructions that involve the meta key in a keybinding you\u2019ll see it written as <code>M-&lt;key&gt;<\/code>. <\/p>\n\n\n\n<div id=\"outline-container-orgbf6e43d\" class=\"outline-2\">\n<h2 id=\"file-wrap-text-emacs\"><a id=\"orgbf6e43d\"><\/a>How to wrap text in current file<\/h2>\n<div class=\"outline-text-2\" id=\"text-file-wrap-text-emacs\">\n<p>\nTo enable text wrapping only in the file you\u2019re working with, use the <code>M-x<\/code> function call and type <code>visual-line-mode<\/code>.  (Remember, you can use tab auto completion to add the rest the of the command.)\n<\/p>\n\n<p class=\"alert alert-info\">Bear in mind, visual line mode will disable itself when you close this file or quit emacs.<\/p>\n<\/div>\n<\/div>\n\n\n\n<div id=\"outline-container-org277533a\" class=\"outline-2\">\n<h2 id=\"all-files-wrap-text-emacs\"><a id=\"org277533a\"><\/a>How to wrap text in all files<\/h2>\n<div class=\"outline-text-2\" id=\"text-all-files-wrap-text-emacs\">\n<p>\nIn order to add text wrapping to all of your emacs files, you can enable the function globally in your emacs configuration file (<code>~\/.emacs<\/code>) with this snippet of emacs lisp code:\n<\/p>\n\n<p>\n<code>(add-hook 'text-mode-hook 'visual-line-mode)<\/code>\n<\/p>\n\n<p>\nThat\u2019s it!\n<\/p>\n\n<hr>\n\n<p>\nWell done!  You now know how to wrap text in emacs.  Be sure to leave a comment or question below if you have any further questions.\n<\/p>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Why or Why Not To Wrap Text in Emacs<\/h2>\n\n\n\n<p>When it comes to displaying how your text sits on a page, you can either soft wrap or hard wrap.  A hard wrap, using \u201cauto-fill-mode\u201d instead of \u201cvisual-line-mode\u201d will break your lines at a certain character limit.<\/p>\n\n\n\n<p>Here is what visual line mode looks like in action, notice how text wraps itself neatly at the edge of the frame and continues below itself:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"521\" height=\"321\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_visual_line_mode.png\" alt=\"Emacs visual line mode\" class=\"wp-image-57502\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_visual_line_mode.png 521w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_visual_line_mode-300x185.png 300w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure><\/div>\n\n\n\n<p>The danger of auto fill mode is that it will fill your document with carriage returns. In some circumstances this is fine. But you may find, depending on where your text is going, you might have to go back and remove those carriage returns.<\/p>\n\n\n\n<p>Here\u2019s what auto fill mode looks like in action, notice how the text breaks itself off before reaching the edge of the frame:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"574\" height=\"319\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_auto_fill_mode.png\" alt=\"Emacs auto fill mode\" class=\"wp-image-57503\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_auto_fill_mode.png 574w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/07\/emacs_auto_fill_mode-300x167.png 300w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure><\/div>\n\n\n\n<p>Retaining long lines with visual line mode ensures against having a \u201cdo or die\u201d situation involving erasing hundreds of line returns.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Emacs is a high level open source cross platform text editor. The first time you open Emacs you might start typing and realize your text rolls right past the right margin of your editor frame and continues into nowhere. For most users, wrapping text (or, soft wrap) is more visually appealing, and helps keep a<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\"> 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":[4360],"tags":[],"class_list":["post-57471","post","type-post","status-publish","format-standard","hentry","category-software"],"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 Wrap Text In Emacs | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In order to properly see your text spill across the screen and wrap around, you&#039;ll need to learn how to wrap text in emacs. There are two ways to do it. We&#039;ll show you both.\" \/>\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\/software\/how-to-wrap-text-in-emacs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Wrap Text In Emacs | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In order to properly see your text spill across the screen and wrap around, you&#039;ll need to learn how to wrap text in emacs. There are two ways to do it. We&#039;ll show you both.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\" \/>\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=\"2020-07-17T14:21:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-22T14:05:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.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=\"2 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\/software\/how-to-wrap-text-in-emacs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Wrap Text in Emacs\",\"datePublished\":\"2020-07-17T14:21:42+00:00\",\"dateModified\":\"2022-02-22T14:05:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\"},\"wordCount\":418,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png\",\"articleSection\":[\"Software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\",\"name\":\"How To Wrap Text In Emacs | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png\",\"datePublished\":\"2020-07-17T14:21:42+00:00\",\"dateModified\":\"2022-02-22T14:05:06+00:00\",\"description\":\"In order to properly see your text spill across the screen and wrap around, you'll need to learn how to wrap text in emacs. There are two ways to do it. We'll show you both.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Wrap Text 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 Wrap Text In Emacs | InMotion Hosting","description":"In order to properly see your text spill across the screen and wrap around, you'll need to learn how to wrap text in emacs. There are two ways to do it. We'll show you both.","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\/software\/how-to-wrap-text-in-emacs\/","og_locale":"en_US","og_type":"article","og_title":"How To Wrap Text In Emacs | InMotion Hosting","og_description":"In order to properly see your text spill across the screen and wrap around, you'll need to learn how to wrap text in emacs. There are two ways to do it. We'll show you both.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-07-17T14:21:42+00:00","article_modified_time":"2022-02-22T14:05:06+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png","type":"","width":"","height":""}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Wrap Text in Emacs","datePublished":"2020-07-17T14:21:42+00:00","dateModified":"2022-02-22T14:05:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/"},"wordCount":418,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png","articleSection":["Software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/","name":"How To Wrap Text In Emacs | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap-1024x538.png","datePublished":"2020-07-17T14:21:42+00:00","dateModified":"2022-02-22T14:05:06+00:00","description":"In order to properly see your text spill across the screen and wrap around, you'll need to learn how to wrap text in emacs. There are two ways to do it. We'll show you both.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/02\/Emacs-Text-Wrap.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Wrap Text 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":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57471","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=57471"}],"version-history":[{"count":9,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57471\/revisions"}],"predecessor-version":[{"id":94325,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/57471\/revisions\/94325"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=57471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=57471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=57471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}