{"id":68701,"date":"2021-02-17T11:04:40","date_gmt":"2021-02-17T16:04:40","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=68701"},"modified":"2021-08-16T15:26:47","modified_gmt":"2021-08-16T19:26:47","slug":"org-mode","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/","title":{"rendered":"Emacs Org Mode Basics Quick Start"},"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\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png\" alt=\"Emacs Org mode quick start\" class=\"wp-image-68708\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n<div class=\"jumbotron\"><p>Experience full control over your server environment and deploy the best operating and management systems that fit your needs with our reliable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>!<\/p><\/div>\n\n\n<p>Emacs Org mode gives you a complete interface for interacting with your systems. Whether you have a fleet of servers, or you\u2019re a freelance web designer with a small cluster of clients, Org mode can help you keep track of your work while in the normal course of your daily activities. It is a unique productivity tool that may surprise you.<\/p>\n<div id=\"text-table-of-contents\">\n<ul>\n<li><a href=\"#orgb752408\">Basic Keys<\/a><\/li>\n<li><a href=\"#org20a3b98\">Org Mode Markup<\/a><\/li>\n<li><a href=\"#orgd8361a4\">Server Access and Hyperlinking Remote Files<\/a><\/li>\n<li><a href=\"#org0c8dbb7\">Todo Items and States<\/a><\/li>\n<li><a href=\"#org6295651\">Agenda View<\/a><\/li>\n<\/ul>\n<\/div>\n<div id=\"outline-container-orgb752408\" class=\"outline-2\">\n<h2 id=\"orgb752408\">Basic Keys<\/h2>\n<div id=\"text-orgb752408\" class=\"outline-text-2\">\n<p>Before starting up with Org mode there are a few key commands you should go ahead and set in your Emacs init file first. These key commands may seem opaque to you now, but they will make sense later:<\/p>\n<div class=\"org-src-container\">\n<pre class=\"src src-elisp\">(global-set-key <span style=\"color: #ff5f87;\">\"\\C-cl\"<\/span> 'org-store-link)\n(global-set-key <span style=\"color: #ff5f87;\">\"\\C-ca\"<\/span> 'org-agenda)\n(global-set-key <span style=\"color: #ff5f87;\">\"\\C-cc\"<\/span> 'org-capture)\n(global-set-key <span style=\"color: #ff5f87;\">\"\\C-cb\"<\/span> 'org-switchb)\n<\/pre>\n<\/div>\n<p>Now you will be able to take advantage of these key commands when the time comes.<\/p>\n<\/div>\n<\/div>\n<div id=\"outline-container-org20a3b98\" class=\"outline-2\">\n<h2 id=\"org20a3b98\">Org Mode Markup<\/h2>\n<div id=\"text-org20a3b98\" class=\"outline-text-2\">\n<p>Org mode is not only an organizational tool but also provides single source authoring functionality. This means you can write a document in Org mode markup and export it to virtually any format. All you need to do is familiarize yourself with this markup.<\/p>\n<p>Hierarchical headings use an asterisk (<code>*<\/code>). Level 1 headings use one asterisk, and each level beneath simply adds one asterisk.<\/p>\n<div class=\"org-src-container\">\n<pre class=\"src src-org\"><span style=\"color: #993366;\">* Heading Level 1<\/span>\n<span style=\"color: #b2baf6;\">** Heading Level 2<\/span>\n<span style=\"color: #f09fff;\">*** Heading Level 3<\/span>\n\n(And so forth.)\n<\/pre>\n<\/div>\n<p>Likewise, you can use text decoration with forward slashes for italics (<code>\/<\/code>) and inline asterisks for bold text (<code>*<\/code>).<\/p>\n<p>You can also nest content within quote and verse constructs using this markup:<\/p>\n<div class=\"org-src-container\">\n<pre class=\"src src-org\"><span style=\"color: #0000ff;\">#+begin_quote<\/span>\n\"I already know Unix.\"\n\n---Dilbert\n<span style=\"color: #0000ff;\">#+end_quote\n\n#+begin_verse\n<\/span>  We shall not cease from exploration\nAnd the end of all our exploring\nWill be to arrive where we started\nAnd know the place for the first time.\n\n---T.S. Eliot, <span style=\"font-style: italic;\">\/Four Quartets\/<\/span>\n<span style=\"color: #0000ff;\">#+end_verse\n<\/span><\/pre>\n<\/div>\n<p>But what\u2019s the difference between quotes and verses? That depends on which export \u201cbackend\u201d you choose. In HTML and LaTex, for example, quotes will ignore line breaks while verse will retain them. It\u2019s important to remember that when using these constructs in plain text markup they merely indicate difference. How that difference is treated on the backend will be different in certain cases.<\/p>\n<p>Also note, in most export backends the triples hyphens (<code>---<\/code>) will be converted into em dashes (\u2014). But this, again, depends on which backend you choose.<\/p>\n<p>Here are a few backends that come pre-loaded with Org mode:<\/p>\n<ul class=\"org-ul\">\n<li>HTML<\/li>\n<li>OpenOffice<\/li>\n<li>LaTex<\/li>\n<li>Markdown<\/li>\n<li>Taskjuggler<\/li>\n<\/ul>\n<p>For a complete rundown of markup options please visit the <a href=\"https:\/\/orgmode.org\/guide\/Markup.html\" target=\"_blank\" rel=\"noopener noreferrer\">Org mode documentation<\/a>.<\/p>\n<\/div>\n<div id=\"outline-container-orga9f8db7\" class=\"outline-3\">\n<h3 id=\"orga9f8db7\">Literate Programming<\/h3>\n<div id=\"text-orga9f8db7\" class=\"outline-text-3\">\n<p>You might be wondering, \u201cWhy would I need to bother with document formatting?\u201d Even if you\u2019re not a writer, Org mode provides documentation features that lend themselves easily to literate programming. Literate programming, basically, means embedding snippets of code\u2014or entire programs\u2014within a written document.<\/p>\n<p>Imagine how far you could extend this functionality. Let\u2019s say you have a complicated set of shell scripts that complete all of your server maintenance for you. You can host these scripts in GitHub with a few comments interspersed, or you could provide fully articulated documentation around the scripts themselves, optimized for human reading. And, even more, these scripts could be run from within the document itself (provided your reader is using Emacs.)<\/p>\n<p>To create a code snippet in your document type <code>C-c C-,<\/code> and choose <code>[s]<\/code> for source code block.<\/p>\n<p>For example, here is a snippet of Emacs Lisp code that will run in your file itself:<\/p>\n<div class=\"org-src-container\">\n<pre class=\"src src-org\"><span style=\"color: #993366;\">#+begin_src elisp\n(+ 2 2)\n#+end_src\n<\/span><\/pre>\n<\/div>\n<p>This particular sample, when executed, will add 2 and 2 and produce a result of 4.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div id=\"outline-container-orgd8361a4\" class=\"outline-2\">\n<h2 id=\"orgd8361a4\">Server Access and Hyperlinking Remote Files<\/h2>\n<div id=\"text-orgd8361a4\" class=\"outline-text-2\">\n<p>One of the main benefits of using Emacs includes opening and (optionally) bookmarking remote files via SSH. Add Org mode, and you can actually hyperlink remote files, opening the connection and the file for editing with one click.<\/p>\n<p>First off, once you have <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/emacs-tramp\/\" target=\"_blank\" rel=\"noopener noreferrer\">accessed a file with TRAMP<\/a>, all you need to do is type <code>C-c l<\/code> to store the link to that file. Then, open any Org document, highlight the text you want to hyperlink and type <code>C-c C-l<\/code>, type or paste the URL in the minibuffer, and press return (or, enter).<\/p>\n<p>Now, all you need to do to access that remote file is click the hyperlink.<\/p>\n<\/div>\n<\/div>\n<div id=\"outline-container-org0c8dbb7\" class=\"outline-2\">\n<h2 id=\"org0c8dbb7\">Todo Items and States<\/h2>\n<div id=\"text-org0c8dbb7\" class=\"outline-text-2\">\n<p>With Org mode, you can set various headings in your document to various states of progress or completion. The default states are \u201cTODO\u201d and \u201cDONE.\u201d<\/p>\n<p>You can also schedule items (for when you want to start working on them) or set a deadline (for when when you <i>must<\/i> complete something).<\/p>\n<p>Remember, these states all work upon plain text files. So you can type them in yourself, or you can use key commands to set them.<\/p>\n<ul class=\"org-ul\">\n<li>To schedule an item, place your cursor over the heading and type <code>C-c C-s<\/code><\/li>\n<li>To set a deadline, type <code>C-c C-d<\/code><\/li>\n<\/ul>\n<p>In either case you will be prompted with a calendar. Select your date and press Enter. (If you want move forward or backward in the calendar press <code>&gt;<\/code> or <code>&lt;<\/code>.<\/p>\n<div class=\"org-src-container\">\n<pre class=\"src src-org\"><span style=\"color: #aa2255;\">#+title:<\/span> <span style=\"color: #339966;\"><span style=\"font-weight: bold; color: #000080;\">Next Actions<\/span>\n<span style=\"color: #ff6600;\">#+seq_todo: TODO WAITING | DONE \n<\/span><\/span>\n<span style=\"color: #000080;\">* <\/span><span style=\"color: #f25a5a;\">TODO<\/span><span style=\"color: #000080;\"> Rotate passwords<\/span>\n  <span style=\"color: #a86;\">SCHEDULED:<\/span> <span style=\"color: #b2baf6; text-decoration: underline;\">&lt;2021-02-16 Tue&gt;<\/span>\n\n<span style=\"color: #000080;\">* <\/span><span style=\"color: #339966;\">DONE<\/span> <span style=\"color: #ffa07a;\">Write backup script<\/span>\n  <span style=\"color: #a86;\">CLOSED:<\/span> <span style=\"color: #b2baf6; text-decoration: underline;\">[2021-02-16 Tue 11:42]<\/span> <span style=\"color: #a86;\">SCHEDULED:<\/span> <span style=\"color: #b2baf6; text-decoration: underline;\">&lt;2021-02-13 Sat&gt;<\/span>\n\n<span style=\"color: #000080;\">* <\/span><span style=\"color: #f25a5a;\">TODO<\/span><span style=\"color: #000080;\"> Turn in quarterly usage report<\/span>\n  <span style=\"color: #a86;\">DEADLINE:<\/span> <span style=\"color: #b2baf6; text-decoration: underline;\">&lt;2021-02-19 Fri&gt;<\/span>\n<\/pre>\n<\/div>\n<p>To cycle through todo states, you can use your Shift plus arrow keys for left right. Right moves forward by todo state while left moves backward.<\/p>\n<\/div>\n<\/div>\n<div id=\"outline-container-org6295651\" class=\"outline-2\">\n<h2 id=\"org6295651\">Agenda View<\/h2>\n<div id=\"text-org6295651\" class=\"outline-text-2\">\n<p>As you can imagine, sorting through the various items listed in your files can get daunting after you add more content. This is where the agenda views come to the rescue.<\/p>\n<p>The Org agenda collects data\u2014from a list of Org files which you specify\u2014and collects all the todo items, scheduled and deadline information, into one view.<\/p>\n<p>To add an org file to the agenda list just type <code>C-c [<\/code>.<\/p>\n<p>Then, using the key command you added at the beginning, type <code>C-c a<\/code> to bring up the agenda dispatcher. Use the keys listed to select which agenda view you would like to see.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-68730 size-full\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/org-mode-agenda-dispatcher.png\" alt=\"Org mode agenda dispatcher.\" width=\"721\" height=\"263\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/org-mode-agenda-dispatcher.png 721w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/org-mode-agenda-dispatcher-300x109.png 300w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/p>\n<hr>\n<p>This is the beginning of your journey with Org mode. From here, you have everything you need to get started.<\/p>\n<dl class=\"org-dl\">\n<dt><a href=\"https:\/\/orgmode.org\/manual\/Visibility-Cycling.html\" target=\"_blank\" rel=\"noopener noreferrer\">Visibility cycling<\/a><\/dt>\n<dd>fold various heading in your document open and closed to more easily navigate through<\/dd>\n<dt><a href=\"https:\/\/orgmode.org\/manual\/Capture-templates.html\" target=\"_blank\" rel=\"noopener noreferrer\">Capture templates<\/a><\/dt>\n<dd>create templates for capturing new headings (or, nodes) into various Org files in your configuration<\/dd>\n<dt><a href=\"https:\/\/orgmode.org\/manual\/Exporting.html\" target=\"_blank\" rel=\"noopener noreferrer\">File export<\/a><\/dt>\n<dd>expand the various export options in the dispatcher (<code>C-c C-e<\/code>) to export your Org document into various formats<\/dd>\n<dt><a href=\"https:\/\/orgmode.org\/manual\/Include-Files.html\" target=\"_blank\" rel=\"noopener noreferrer\">File inclusion<\/a> and <a href=\"https:\/\/orgmode.org\/manual\/In_002dbuffer-Settings.html\">setup files<\/a><\/dt>\n<dd>If there are any org structures you use frequently, you can put them in a reproducible \u201csetup\u201d file; likewise, you can dynamically include the contents of other files within a document<\/dd>\n<dt><a href=\"https:\/\/orgmode.org\/manual\/Attachments.html\" target=\"_blank\" rel=\"noopener noreferrer\">File attachments<\/a><\/dt>\n<dd>Break free of the file system by attaching various files to one node within an org document<\/dd>\n<\/dl>\n<p>And be sure to check out other Emacs related content in the support center:<\/p>\n<ul class=\"org-ul\">\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-wrap-text-in-emacs\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to wrap text in Emacs<\/a><\/li>\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/dired\/\" target=\"_blank\" rel=\"noopener noreferrer\">Using \u201cDired\u201d as a file manager<\/a><\/li>\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-post-to-wordpress-from-emacs\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to post to WordPress from Emacs<\/a><\/li>\n<\/ul>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Emacs Org mode gives you a complete interface for interacting with your systems. Whether you have a fleet of servers, or you\u2019re a freelance web designer with a small cluster of clients, Org mode can help you keep track of your work while in the normal course of your daily activities. It is a unique<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-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-68701","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>Emacs Org Mode Basics Quick Start | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.\" \/>\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\/org-mode\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Emacs Org Mode Basics Quick Start | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-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-02-17T16:04:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-16T19:26:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.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=\"6 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\/org-mode\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Emacs Org Mode Basics Quick Start\",\"datePublished\":\"2021-02-17T16:04:40+00:00\",\"dateModified\":\"2021-08-16T19:26:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/\"},\"wordCount\":1047,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png\",\"articleSection\":[\"Emacs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/\",\"name\":\"Emacs Org Mode Basics Quick Start | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png\",\"datePublished\":\"2021-02-17T16:04:40+00:00\",\"dateModified\":\"2021-08-16T19:26:47+00:00\",\"description\":\"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Emacs Org Mode Basics Quick Start\"}]},{\"@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":"Emacs Org Mode Basics Quick Start | InMotion Hosting","description":"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.","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\/org-mode\/","og_locale":"en_US","og_type":"article","og_title":"Emacs Org Mode Basics Quick Start | InMotion Hosting","og_description":"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-02-17T16:04:40+00:00","article_modified_time":"2021-08-16T19:26:47+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Emacs Org Mode Basics Quick Start","datePublished":"2021-02-17T16:04:40+00:00","dateModified":"2021-08-16T19:26:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/"},"wordCount":1047,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png","articleSection":["Emacs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/","name":"Emacs Org Mode Basics Quick Start | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start-1024x538.png","datePublished":"2021-02-17T16:04:40+00:00","dateModified":"2021-08-16T19:26:47+00:00","description":"With Org mode, you can manage all of your work in a series of plain text files and collect all of your code snippets in one place. Never lose a file.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/02\/Emacs-Org-Mode-Quick-Start.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/org-mode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Emacs Org Mode Basics Quick Start"}]},{"@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\/68701","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=68701"}],"version-history":[{"count":10,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/68701\/revisions"}],"predecessor-version":[{"id":82667,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/68701\/revisions\/82667"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=68701"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=68701"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=68701"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}