<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: John Knowles</title>
    <description>The latest articles on DEV Community by John Knowles (@jpknwls).</description>
    <link>https://dev.to/jpknwls</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F850354%2Fa813c868-8077-4fc0-ac43-81af45211d87.png</url>
      <title>DEV Community: John Knowles</title>
      <link>https://dev.to/jpknwls</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jpknwls"/>
    <language>en</language>
    <item>
      <title>Plaintext Task Management with Dendron and VSCode</title>
      <dc:creator>John Knowles</dc:creator>
      <pubDate>Wed, 20 Apr 2022 16:11:27 +0000</pubDate>
      <link>https://dev.to/dendron/plaintext-task-management-with-dendron-and-vscode-3gb4</link>
      <guid>https://dev.to/dendron/plaintext-task-management-with-dendron-and-vscode-3gb4</guid>
      <description>&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;Tasks come in all &lt;strong&gt;shapes&lt;/strong&gt; and &lt;strong&gt;sizes&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;Sometimes, we simply need a checkbox and a bullet to know what's complete and what's left to-do. Other times, we need to track more complex attributes of our tasks like deadlines, priorities, statuses, assignments, dependencies and more. &lt;/p&gt;

&lt;p&gt;In this tutorial, we'll explore a &lt;strong&gt;simple&lt;/strong&gt; and &lt;strong&gt;scalable&lt;/strong&gt; solution to task management with &lt;a href="https://www.dendron.so/" rel="noopener noreferrer"&gt;Dendron&lt;/a&gt;. Dendron is a developer-focused note taking tool for that is open source, local-first, and integrated with Visual Studio Code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Concepts
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Task Notes
&lt;/h3&gt;

&lt;p&gt;Task Notes are a &lt;strong&gt;special note&lt;/strong&gt; in Dendron, like &lt;a href="https://wiki.dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202" rel="noopener noreferrer"&gt;Scratch Notes&lt;/a&gt; or &lt;a href="https://wiki.dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202" rel="noopener noreferrer"&gt;Daily Journal Notes&lt;/a&gt;. Task Notes use metadata in their frontmatter to help track and display task-related information. &lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;If you'd like to follow along, make sure you've read &lt;a href="https://wiki.dendron.so/notes/678c77d9-ef2c-4537-97b5-64556d6337f1" rel="noopener noreferrer"&gt;Getting Started&lt;/a&gt;, and are able to open a workspace. &lt;/p&gt;

&lt;h2&gt;
  
  
  Steps
&lt;/h2&gt;

&lt;p&gt;Let's imagine a friend is having a birthday, and we want to bake some cookies to help celebrate. The party is in a few hours, so we'll need to act fast!&lt;/p&gt;

&lt;p&gt;To show up to the party with cookies, we'll need to complete three tasks: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;go to the store and buy the ingredients&lt;/li&gt;
&lt;li&gt;mix the ingredients and bake the cookies&lt;/li&gt;
&lt;li&gt;bring the freshly-baked cookies to the party &lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Create bullet tasks
&lt;/h3&gt;

&lt;p&gt;We can begin with the simplest form of task management: &lt;strong&gt;a bullet list of checkmarks&lt;/strong&gt;. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open &lt;a href="https://wiki.dendron.so/notes/a7c3a810-28c8-4b47-96a6-8156b1524af3" rel="noopener noreferrer"&gt;lookup&lt;/a&gt; (&lt;code&gt;Ctrl+L&lt;/code&gt; / &lt;code&gt;Cmd+L&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Type &lt;code&gt;birthday-cookies&lt;/code&gt; in the text prompt and hit enter to create a note&lt;/li&gt;
&lt;li&gt;Copy the following into the &lt;code&gt;birthday-cookies&lt;/code&gt; note:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; [ ] buy ingredients
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bake cookies
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bring cookies to party
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Check off a bullet task
&lt;/h3&gt;

&lt;p&gt;After writing down our list, we make a quick trip to the store and return, ingredients in hand. We have completed our first task! Let's mark it off our list. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Type &lt;code&gt;x&lt;/code&gt; into the brackets next to &lt;code&gt;buy ingredients&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; [x] buy ingredients
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bake cookies
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bring cookies to party
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your bullet list should now render Markdown checkboxes in &lt;a href="https://wiki.dendron.so/notes/Lnp1URddmWEWweyf" rel="noopener noreferrer"&gt;Preview&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-checklist.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-checklist.png" alt="bullet list of tasks with "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Create a task note
&lt;/h3&gt;

&lt;p&gt;Not that we have the ingredients, it's time to bake. Looking at our &lt;code&gt;bake cookies&lt;/code&gt; task, something feels missing...we don't know the steps involved in baking! Let's fix that...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Delete the bracket next to &lt;code&gt;bake cookies&lt;/code&gt;. Your note should look like the following:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; [x] buy ingredients
&lt;span class="p"&gt;-&lt;/span&gt; bake cookies
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bring cookies to party
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Select the text &lt;code&gt;bake cookies&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Open the command palette (&lt;code&gt;Ctrl+Shift+P&lt;/code&gt; / &lt;code&gt;Cmd+Shift+P&lt;/code&gt;) and type &lt;code&gt;task&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Select the &lt;code&gt;Dendron: Create Task Note&lt;/code&gt; command and hit &lt;code&gt;Enter&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;You should see the text &lt;code&gt;birthday-cookies.bake-cookies&lt;/code&gt;. If not, correct the text. Hit  &lt;code&gt;Enter&lt;/code&gt; again. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For reference, we are using the following configuration for this tutorial (the default in Dendron):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;    &lt;span class="na"&gt;task&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;task&lt;/span&gt;
        &lt;span class="na"&gt;dateFormat&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;y.MM.dd&lt;/span&gt;
        &lt;span class="na"&gt;addBehavior&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;asOwnDomain&lt;/span&gt;
        &lt;span class="na"&gt;statusSymbols&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
            &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;'&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;'p&lt;/span&gt;
            &lt;span class="s"&gt;wip&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;w&lt;/span&gt;
            &lt;span class="s"&gt;done&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;x&lt;/span&gt;
            &lt;span class="s"&gt;assigned&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;a&lt;/span&gt;
            &lt;span class="s"&gt;moved&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;m&lt;/span&gt;
            &lt;span class="s"&gt;blocked&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;b&lt;/span&gt;
            &lt;span class="s"&gt;delegated&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;l&lt;/span&gt;
            &lt;span class="s"&gt;dropped&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s"&gt;d&lt;/span&gt;
            &lt;span class="s"&gt;pending&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;y'&lt;/span&gt;
        &lt;span class="na"&gt;prioritySymbols&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
            &lt;span class="na"&gt;H&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;high&lt;/span&gt;
            &lt;span class="na"&gt;M&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;medium&lt;/span&gt;
            &lt;span class="na"&gt;L&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;low&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Visit here for more information on &lt;a href="https://wiki.dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202" rel="noopener noreferrer"&gt;the configuration of special notes like task notes&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check off a task note
&lt;/h3&gt;

&lt;p&gt;Congrats, you've created a task note! You may notice something strange with this new note. There's something extra in the &lt;a href="https://wiki.dendron.so/notes/ffec2853-c0e0-4165-a368-339db12c8e4b" rel="noopener noreferrer"&gt;frontmatter&lt;/a&gt; (the &lt;code&gt;YAML&lt;/code&gt; text at the top of the file). &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🗒 &lt;strong&gt;Note&lt;/strong&gt;: Frontmatter is hidden by default in task notes. To expand, click the arrow next to the top line.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Add an &lt;code&gt;'x'&lt;/code&gt; next to &lt;code&gt;status&lt;/code&gt; so it reads:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;status: 'x'
due: ''
priority: ''
owner: ''
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Navigate back to the &lt;code&gt;birthday-cookies&lt;/code&gt; note. &lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 &lt;strong&gt;Tip&lt;/strong&gt;: To quickly go back to the previous note, use the &lt;code&gt;Alt-Tab&lt;/code&gt; shortcut&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You should see that the &lt;code&gt;bake-cookies&lt;/code&gt; note has a filled checkbox.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; [x] buy ingredients
&lt;span class="p"&gt;-&lt;/span&gt; [x] [[bake cookies|birthday-cookies.bake-cookies]]
&lt;span class="p"&gt;-&lt;/span&gt; [ ] bring cookies to party
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Task notes give we get an up-to-date view of the task's status any place it is linked to. But let's not get ahead of ourselves, we haven't done any baking yet!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Return to &lt;code&gt;birthday-cookies.bake-cookies&lt;/code&gt; and remove the &lt;code&gt;x&lt;/code&gt; next to &lt;code&gt;status&lt;/code&gt; so that it reads: &lt;code&gt;status: ''&lt;/code&gt;. &lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;🚧 &lt;strong&gt;Under Construction&lt;/strong&gt;: We appreciate your patience as we develop new features like task notes. Currently, checkboxes are under construction, and are not rendering correctly in Preview.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Break into subtasks
&lt;/h3&gt;

&lt;p&gt;Let's make a task for each step:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;prepare the oven and ingredients&lt;/li&gt;
&lt;li&gt;mix the ingredients&lt;/li&gt;
&lt;li&gt;form dough balls and bake in the oven&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Copy the following into &lt;code&gt;birthday-cookies.bake-cookies&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; prepare oven and ingredients
&lt;span class="p"&gt;-&lt;/span&gt; mix ingredients
&lt;span class="p"&gt;-&lt;/span&gt; form balls and bake
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For the &lt;code&gt;mix ingredients&lt;/code&gt; and &lt;code&gt;form balls and bake&lt;/code&gt; subtasks, create a task note as you did above:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the text for the new task&lt;/li&gt;
&lt;li&gt;Open the &lt;code&gt;Command Palette&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Run the &lt;code&gt;Dendron: Create Task Note&lt;/code&gt; command&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Your &lt;code&gt;bake-cookies&lt;/code&gt; task should now look as follows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; [ ] [[prepare oven and ingredients|bake-cookies.prepare-oven-and-ingredients]]
&lt;span class="p"&gt;-&lt;/span&gt; [ ] [[mix ingredients|bake-cookies.mix-ingredients]]
&lt;span class="p"&gt;-&lt;/span&gt; [ ] [[form balls and bake|bake-cookies.form-balls-and-bake]]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Navigate to &lt;code&gt;bake-cookies.prepare-oven-and-ingredients&lt;/code&gt; and check out at the backlinks of the note&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-backlink.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-backlink.png" alt="Backlinks window with a backlink to the "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 &lt;strong&gt;Tip&lt;/strong&gt;: By nesting our tasks notes (linking to a task inside another task), we can monitor which tasks are dependent on others using backlinks.  &lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Return to your &lt;code&gt;birthday-cookies&lt;/code&gt; note and hover your mouse above the link to the &lt;code&gt;bake-cookies&lt;/code&gt; note. You should see the newly created tasks in Quick Preview. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-preview.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Forg-dendron-public-assets.s3.amazonaws.com%2Fimages%2Ftutorial-task-preview.png" alt="Quick Preview window showing links in "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 &lt;strong&gt;Tip&lt;/strong&gt;: Try clicking on one of the tasks in the Quick Preview. Look, it's a link!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Look at you go, you've created subtasks! &lt;/p&gt;

&lt;p&gt;Now, you can track your progress at a more granular level through the different baking steps. Soon, the smell of cookies will be in the air, and it will be time to party! 🥳&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrap-up
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Takeaways
&lt;/h3&gt;

&lt;p&gt;Upon completing this tutorial, you've learned about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;creating a simple tasks using &lt;code&gt;[ ]&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;creating a task note&lt;/li&gt;
&lt;li&gt;adding subtasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Task management in Dendron is flexible. Through task-specific features like bullet tasks, task notes, subtasks and configs, as well as familiar features like &lt;a href="https://wiki.dendron.so/notes/f3a41725-c5e5-4851-a6ed-5f541054d409" rel="noopener noreferrer"&gt;hierarchies&lt;/a&gt; and &lt;a href="https://wiki.dendron.so/notes/3472226a-ff3c-432d-bf5d-10926f39f6c2" rel="noopener noreferrer"&gt;bidirectional links&lt;/a&gt;, Dendron gives you the tools to tackle tasks at any scale. &lt;/p&gt;

&lt;h3&gt;
  
  
  Next Steps
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Customize your task notes with a &lt;a href="https://wiki.dendron.so/notes/SEASewZSteDK7ry1AshNG" rel="noopener noreferrer"&gt;custom configuration&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;Learn about the process of starting simple and reshaping with the &lt;a href="https://wiki.dendron.so/notes/e780000d-c784-4945-8e42-35218a3ecf10" rel="noopener noreferrer"&gt;Amoeba Pattern&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Learn more about how Dendron supports other workflows, like &lt;a href="https://wiki.dendron.so/notes/e65dfe53-41f7-4b16-b870-dadec1775497" rel="noopener noreferrer"&gt;Bullet Journaling&lt;/a&gt; and &lt;a href="https://wiki.dendron.so/notes/593206ea-5658-4874-bafd-18a138870f91" rel="noopener noreferrer"&gt;Todos&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Read through the proposal for &lt;a href="https://wiki.dendron.so/notes/716e2699-42e1-44bd-9b97-124f03173ddc" rel="noopener noreferrer"&gt;task notes&lt;/a&gt; and give your feedback on tasks in Dendron &lt;/li&gt;
&lt;li&gt;See how other Dendrologist manage tasks from a &lt;a href="https://wiki.dendron.so/notes/ordz7r99w1v099v14hrwgnp" rel="noopener noreferrer"&gt;live demonstration&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Learn how Dendron manages tasks as a team in our &lt;a href="https://handbook.dendron.so/notes/nvv2jssywd0e3wvqg6jem8j" rel="noopener noreferrer"&gt;organization handbook&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>dendron</category>
      <category>plaintext</category>
      <category>vscode</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
