<?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: Merlijn Vos</title>
    <description>The latest articles on DEV Community by Merlijn Vos (@murderlon).</description>
    <link>https://dev.to/murderlon</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%2F4255%2Fc81c75f6-22a0-4951-a503-9f188771f074.jpg</url>
      <title>DEV Community: Merlijn Vos</title>
      <link>https://dev.to/murderlon</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/murderlon"/>
    <language>en</language>
    <item>
      <title>Crowdsourcing the evolution of text parsing with unified</title>
      <dc:creator>Merlijn Vos</dc:creator>
      <pubDate>Wed, 14 Nov 2018 20:42:00 +0000</pubDate>
      <link>https://dev.to/murderlon/crowdsourcing-the-evolution-of-text-parsing-with-unified-5ao1</link>
      <guid>https://dev.to/murderlon/crowdsourcing-the-evolution-of-text-parsing-with-unified-5ao1</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;New projects and how you, like ZEIT and Gatsby, can help out&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Written by &lt;a href="https://medium.com/@murderlon" rel="noopener noreferrer"&gt;Merlijn&lt;/a&gt; and &lt;a href="https://medium.com/@wooorm" rel="noopener noreferrer"&gt;Titus&lt;/a&gt;, with help of &lt;a href="https://medium.com/@jenweber" rel="noopener noreferrer"&gt;Jen&lt;/a&gt;, &lt;a href="https://medium.com/@4lpine" rel="noopener noreferrer"&gt;John&lt;/a&gt;, and countless others. Originally posted on &lt;a href="https://medium.com/unifiedjs/collectively-evolving-through-crowdsourcing-22c359ea95cc" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;unified's interface used to transform markdown to HTML while adding other features unified is a tool for manipulating content using syntax trees. MDX is an extension that lets you use markdown in JSX. micromark is a new parser we're planning to make manipulation super fast. Today, we're announcing the unified collective to fund the development of all three. And we'd love you to get involved.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  First, what's unified?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://unified.js.org/" rel="noopener noreferrer"&gt;unified&lt;/a&gt; is a friendly interface backed by an ecosystem of plugins built for creating and manipulating content. unified does this by taking markdown, HTML, or plain text prose, turning it into structured data, and making it available to over 100 plugins. Tasks like text analysis, preprocessing, spellchecking, linting, and more can all be done through compatible tools, and even chained together.&lt;/p&gt;

&lt;p&gt;This and more is possible thanks to unified's plugin pipeline, which lets you typically write one line of code to chain a feature into this process. It's also possible to stitch together content from different sources and output it as a single source.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bottom line: with unified, you don't manually handle syntax or parsing.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How it's used today
&lt;/h2&gt;

&lt;p&gt;unified has been actively worked on over the last five years, but this year, it has gotten a lot of traction. It’s used to create websites like &lt;a href="https://www.freecodecamp.org/" rel="noopener noreferrer"&gt;freeCodeCamp&lt;/a&gt;, &lt;a href="https://nodejs.org/" rel="noopener noreferrer"&gt;Node.js&lt;/a&gt;, and &lt;a href="https://developers.google.com/web/fundamentals/" rel="noopener noreferrer"&gt;WebFundamentals&lt;/a&gt; (Google). It’s powering new exciting projects like &lt;a href="https://www.gatsbyjs.org/" rel="noopener noreferrer"&gt;Gatsby&lt;/a&gt; to pull in markdown, &lt;a href="https://mdxjs.com/" rel="noopener noreferrer"&gt;MDX&lt;/a&gt; to embed JSX, and &lt;a href="https://prettier.io/" rel="noopener noreferrer"&gt;Prettier&lt;/a&gt; to format it. It’s used to check code for &lt;a href="https://storybook.js.org/" rel="noopener noreferrer"&gt;Storybook&lt;/a&gt;, &lt;a href="https://github.com/devtools-html/debugger.html" rel="noopener noreferrer"&gt;debugger.html&lt;/a&gt; (Mozilla), &lt;a href="https://opensource.guide/" rel="noopener noreferrer"&gt;opensource.guide&lt;/a&gt; (GitHub), and many more.&lt;/p&gt;

&lt;p&gt;To further speak to one's imagination, here are the more common plugins used by the above projects to do interesting things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/remarkjs/remark-toc" rel="noopener noreferrer"&gt;remark-toc&lt;/a&gt; - generate a table of contents&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mapbox/rehype-prism" rel="noopener noreferrer"&gt;rehype-prism&lt;/a&gt; - highlight code in HTML with Prism&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/retextjs/retext-spell" rel="noopener noreferrer"&gt;retext-spell&lt;/a&gt; - check spelling&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/remarkjs/remark-lint" rel="noopener noreferrer"&gt;remark-lint&lt;/a&gt; - check markdown code style&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/retextjs/retext-equality" rel="noopener noreferrer"&gt;retext-equality&lt;/a&gt; - check possibly insensitive language&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Rokt33r/remark-math" rel="noopener noreferrer"&gt;remark-math&lt;/a&gt; - support math in markdown / html&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/retextjs/retext-repeated-words" rel="noopener noreferrer"&gt;retext-repeated-words&lt;/a&gt; - check for for repeated words&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rehypejs/rehype-minify" rel="noopener noreferrer"&gt;rehype-minify&lt;/a&gt; - minify HTML&lt;/li&gt;
&lt;li&gt;…explore all &lt;a href="https://github.com/topics/remark-plugin" rel="noopener noreferrer"&gt;remark&lt;/a&gt;, &lt;a href="https://github.com/topics/rehype-plugin" rel="noopener noreferrer"&gt;rehype&lt;/a&gt;, or &lt;a href="https://github.com/topics/retext-plugin" rel="noopener noreferrer"&gt;retext&lt;/a&gt; plugins&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;From a maintainer's perspective, all this new traction comes with an immense amount of customer support, where maintainers are spending their evenings responding to questions posed as issues. The stress that comes with working on highly used open source ecosystems and the ever-increasing amount of issues results in more time spent on maintaining existing code, instead of creating new things.&lt;/p&gt;

&lt;h2&gt;
  
  
  Announcing the unified collective
&lt;/h2&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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fp0absj2os4b4h1g8cxim.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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fp0absj2os4b4h1g8cxim.png" alt="Organisations under the unified umbrella"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Organisations under the unified umbrella&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Today, we are pleased to announce the creation of the &lt;a href="https://unified.js.org/" rel="noopener noreferrer"&gt;unified collective&lt;/a&gt;. It's an effort to bring together like-minded organisations to collaboratively work on the innovation of content through seamless, interchangeable, and extendible tooling. We build parsers, transformers, and utilities so that others don't have to worry about syntax. We make it easier for developers to develop.&lt;/p&gt;

&lt;h3&gt;
  
  
  The humans
&lt;/h3&gt;

&lt;p&gt;The people who will initially be taking a lead in advancing the unified collective are Titus (&lt;a href="https://github.com/wooorm" rel="noopener noreferrer"&gt;@wooorm&lt;/a&gt;, original author of unified), John (&lt;a href="https://github.com/johno" rel="noopener noreferrer"&gt;@johno&lt;/a&gt;, original author of mdx), Stephan (&lt;a href="https://github.com/zcei" rel="noopener noreferrer"&gt;@zcei&lt;/a&gt;), Merlijn (&lt;a href="https://github.com/Murderlon" rel="noopener noreferrer"&gt;@murderlon&lt;/a&gt;), Richard (&lt;a href="https://github.com/RichardLitt" rel="noopener noreferrer"&gt;@richardlit&lt;/a&gt;), Victor (&lt;a href="https://github.com/vhf" rel="noopener noreferrer"&gt;@vhf&lt;/a&gt;), Mudit (&lt;a href="https://github.com/zeusdeux" rel="noopener noreferrer"&gt;@zeusdeux&lt;/a&gt;), Christian (&lt;a href="https://github.com/christianmurphy" rel="noopener noreferrer"&gt;@christianmurphy&lt;/a&gt;), and, …you?&lt;/p&gt;

&lt;p&gt;Of course, we also want to thank all the lovely contributors across the ecosystem who have helped us to even get to this point by reporting issues, writing utilities and plugins, and submitting all kinds of improvements!&lt;/p&gt;




&lt;p&gt;To be able to deliver on our mission, we need to start maintaining unified in a sustainable way, create a better ecosystem, and grow by adding new projects. We're doing just that today: unified is expanding, with &lt;a href="https://github.com/mdx-js/mdx" rel="noopener noreferrer"&gt;MDX&lt;/a&gt; and &lt;a href="https://github.com/micromark/micromark" rel="noopener noreferrer"&gt;micromark&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  MDX joins forces with unified
&lt;/h2&gt;

&lt;p&gt;Next to existing low-level organisations under unified - such as &lt;a href="https://github.com/remarkjs/remark" rel="noopener noreferrer"&gt;remark&lt;/a&gt; for markdown, &lt;a href="https://github.com/rehypejs/rehype" rel="noopener noreferrer"&gt;rehype&lt;/a&gt; for HTML, &lt;a href="https://github.com/retextjs/retext" rel="noopener noreferrer"&gt;retext&lt;/a&gt; for natural language - we're excited to announce that we are partnering with high-level projects as well. &lt;strong&gt;MDX&lt;/strong&gt; is joining &lt;strong&gt;unified&lt;/strong&gt; 🎉&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A large part of MDX's success has been leveraging the unified and remark ecosystem. I was able to get a prototype working in a few hours because I didn't have to worry about markdown parsing: remark gave it to me for free. It provided the primitives to build on. It makes sense for these projects to come together and make each other better.&lt;/p&gt;

&lt;p&gt;— &lt;a href="https://github.com/johno" rel="noopener noreferrer"&gt;John Otander&lt;/a&gt;, author of &lt;a href="https://github.com/mdx-js/mdx" rel="noopener noreferrer"&gt;mdx-js/mdx&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;MDX&lt;/strong&gt; is powerful. It's markdown for the component era. It lets you write JSX embedded inside markdown. That's a great combination because it allows you to use markdown's often terse syntax (such as &lt;code&gt;# heading&lt;/code&gt;) for the little things and JSX for more advanced components. MDX is useful for a &lt;a href="https://jamstack.org/" rel="noopener noreferrer"&gt;JAMStack&lt;/a&gt; application, injecting dynamic data into a document, or building slides in mdx-deck.&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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fztw2ddnleep6ikkapkfg.gif" 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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fztw2ddnleep6ikkapkfg.gif" alt="mdx-deck by Brent Jackson"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;mdx-deck by Brent Jackson&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing micromark
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;micromark is a new, tiny, and fast, markdown parser written in TypeScript under the unified umbrella - &lt;a href="https://github.com/micromark/micromark" rel="noopener noreferrer"&gt;micromark/micromark&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We believe evolving unified shouldn't just be about new high-level features, like MDX, but also about rethinking core mechanisms. That's where micromark comes in.&lt;/p&gt;

&lt;p&gt;In March 2019 &lt;a href="https://daringfireball.net/2004/03/introducing_markdown" rel="noopener noreferrer"&gt;markdown will be turning 15&lt;/a&gt;. Over the years it has become ubiquitous, but as it wasn't formally specified, many flavours emerged. Most of these flavours continue to serve their purpose but ever since GFM (&lt;a href="https://github.github.com/gfm/" rel="noopener noreferrer"&gt;GitHub Flavored Markdown&lt;/a&gt;) settled on using &lt;a href="https://commonmark.org/" rel="noopener noreferrer"&gt;CommonMark&lt;/a&gt; as a base, it became more or less the de facto style.&lt;/p&gt;

&lt;p&gt;The original &lt;a href="https://daringfireball.net/projects/markdown/" rel="noopener noreferrer"&gt;Markdown.pl&lt;/a&gt;, and CommonMark as well, focused on making writing websites as easy as writing an email. &lt;strong&gt;Nowadays, markdown is used to do all kinds of different things&lt;/strong&gt;. It's used to create slides or to generate man pages. It's supported in major CMS's and is the language most developers document their code in. Things like Gatsby and MDX attest to the fact that this syntax is reaching a new era.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A new project is needed to support standards like CommonMark and GFM but also support extensions like MDX, while still being fast, small, and modern.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Something like remark, but on a lower level: a &lt;a href="https://en.wikipedia.org/wiki/Lexical_analysis" rel="noopener noreferrer"&gt;lexer&lt;/a&gt; (in nerdy terms 🤓). Syntax trees have many good things, but they do come with the downside of having a big memory footprint and sometimes being more than what you need.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;We're launching micromark as just an idea&lt;/strong&gt;. The first line of code still needs to be written. But we imagine it to be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;small&lt;/strong&gt; in file size, max 10 kB minzipped, and tiny in memory use&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;fast&lt;/strong&gt; in speed, compared to existing parsers on real world documents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;safe&lt;/strong&gt; to use, it should safely work on untrusted content by default&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;compliant&lt;/strong&gt; to CommonMark but &lt;strong&gt;extendible&lt;/strong&gt; for GFM, MDX, etc.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;complete&lt;/strong&gt;, in that it should give access to all info in the source document&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;But it's not:&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;something that creates HTML and the like: other projects use micromark for that&lt;/li&gt;
&lt;li&gt;something that creates a syntax tree: remark will use it to do just that&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;micromark will likely not be something you'd directly interact with, unless you're interested in working on parsers, but it will make high-level tooling better.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Be part of the change
&lt;/h2&gt;

&lt;p&gt;We're invested in making unified and the ecosystem under it better. We believe micromark should exist. And we need your help.&lt;/p&gt;

&lt;p&gt;For example, you could contribute in the following ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Use the projects&lt;/strong&gt;, and let us know through &lt;a href="https://spectrum.chat/unified" rel="noopener noreferrer"&gt;spectrum&lt;/a&gt; or GitHub issues what was hard to figure out, so we can improve the docs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Discuss&lt;/strong&gt;. Just excited but want to keep it simple for now? Head over to &lt;a href="https://spectrum.chat/unified" rel="noopener noreferrer"&gt;spectrum&lt;/a&gt; and start a conversation!&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fix existing issues&lt;/strong&gt;. You can check out &lt;a href="https://github.com/search?q=user%3Amdx-js+user%3Amicromark+user%3Aremarkjs+user%3Arehypejs+user%3Aretextjs+user%3Aredotjs+user%3Aunifiedjs+user%3Asyntax-tree+user%3Avfile+state%3Aopen&amp;amp;type=Issues" rel="noopener noreferrer"&gt;all the open issues in the ecosystem&lt;/a&gt;. All suggestions are welcome, no matter how small!&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Submit new ideas&lt;/strong&gt;. unified and the organisations in it have &lt;a href="https://github.com/unifiedjs/ideas" rel="noopener noreferrer"&gt;dedicated repositories&lt;/a&gt; for new ideas&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support us financially&lt;/strong&gt; by becoming a backer or sponsor on &lt;a href="https://opencollective.com/unified" rel="noopener noreferrer"&gt;Open Collective&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Being an open collective
&lt;/h2&gt;

&lt;p&gt;Open Collective allows unified to collect money from backers and sponsors in a transparent way. We need your support…&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;to pay out core maintainers&lt;/strong&gt; for project leadership&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;to finance non-coding work&lt;/strong&gt;, like technical writing, community consulting, etc.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;to get our remote team together&lt;/strong&gt; in real life&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;to do fun things for the community&lt;/strong&gt;, such as getting stickers to people that contribute&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Both individuals and companies&lt;/strong&gt; can back our mission. You can help make unified sustainable by becoming a backer, starting at $2 per month, or an official unified sponsor, starting at $100 per month. As our way of saying thanks, we list backers and sponsors on our main GitHub repositories. Sponsors will also appear on &lt;a href="https://unified.js.org/" rel="noopener noreferrer"&gt;unified.js.org&lt;/a&gt; and get a shout-out on Twitter. 🥈 Silver ($500+) and 🥇 Gold ($1000+) sponsors additionally get access to help chats with core maintainers.&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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fegp6n05mnwj4jg9q1ivy.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%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fegp6n05mnwj4jg9q1ivy.png" alt="The early and amazing sponsors of unified through Open Collective."&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;The early and amazing sponsors of unified through Open Collective.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The early and amazing sponsors of unified through Open Collective.&lt;br&gt;
We're super excited that &lt;a href="https://zeit.co/" rel="noopener noreferrer"&gt;ZEIT&lt;/a&gt;, &lt;a href="https://www.gatsbyjs.org/" rel="noopener noreferrer"&gt;Gatsby&lt;/a&gt;, &lt;a href="http://compositor.io/" rel="noopener noreferrer"&gt;Compositor&lt;/a&gt;, and &lt;a href="https://www.holloway.com/" rel="noopener noreferrer"&gt;Holloway&lt;/a&gt;, are helping us to become sustainable. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://opencollective.com/unified" rel="noopener noreferrer"&gt;&lt;strong&gt;Join our early sponsors in sustaining the future of unified on open collective.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  This is just the beginning
&lt;/h2&gt;

&lt;p&gt;With our early sponsorship we'll be able to make the ecosystem better starting today. micromark will go into development shortly and it should be ready on markdown's birthday, March 15, 2019. In the meantime we hope to be as transparent as possible on what we will be doing and you can expect more blog posts to keep you in the loop. For more information, find us on &lt;a href="https://github.com/unifiedjs/unified" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; and visit &lt;a href="https://unified.js.org/" rel="noopener noreferrer"&gt;unified.js.org&lt;/a&gt;. If you have any questions already you can ask them on &lt;a href="https://spectrum.chat/unified" rel="noopener noreferrer"&gt;spectrum&lt;/a&gt; or tweet to us &lt;a href="https://twitter.com/unifiedjs" rel="noopener noreferrer"&gt;@unifiedjs&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;These are exciting times for unified and open source in general. We strive to improve the quality and possibilities of the organisations that make up a sustainable unified collective. Rethinking its core with micromark and joining with high-level organisations like MDX, are the first two steps we're taking to do just that.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Together, &lt;a href="https://opencollective.com/unified" rel="noopener noreferrer"&gt;thanks to sponsors&lt;/a&gt;, we can build the most friendly, secure, fast, and extensive bridges between content formats.&lt;/p&gt;

</description>
      <category>unified</category>
      <category>syntaxtrees</category>
      <category>mdx</category>
      <category>micromark</category>
    </item>
  </channel>
</rss>
