Search results

Docs as Code

Series: Trends to follow or forget

by Tom Johnson on Apr 3, 2022
categories: technical-writing

This post is part of a series that explores tech comm trends that I've either followed or forgotten, and why. The overall goal is to better understand the reasons that drive trend adoption or abandonment in my personal career. This post focuses on Docs as Code.

What is Docs as Code?

Docs as Code refers to writing and publishing docs by following the same tools and workflows that developers use to create code. Docs as Code systems are characterized by several practices:

  • Authoring in plain text files (rather than a visual editor). The markup of these plain text files is usually Markdown or reStructuredText (rST).
  • Managing the files using version control such as Git (rather than a database). This might involving branching and merging in a distributed way to a centralized source.
  • Building the web output using static site generators such as Jekyll, Hugo, or other static site generators. The build is often initiated from the server to allow for continuous integration.
  • Managing review cycles through the same diff review tools developers use to review code. These diff tools show exactly what has changed from version to version.

Docs as Code started gaining popularity around 2010-2015 as some developers expressed frustration with heavy, code-bloated content management systems (CMS) systems that had grown overly complex, with a lot of unnecessary modules and infrastructure overburdening the simple task of authoring and publishing web pages. Tom Preston-Werner, co-founder of GitHub and one of the early Docs as Code developers, had an epiphany while blogging that led to the development of the Docs as Code approach. He said:

On Sunday, October 19th [2008], I sat down in my San Francisco apartment with a glass of apple cider and a clear mind. After a period of reflection, I had an idea. While I’m not specifically trained as an author of prose, I am trained as an author of code. What would happen if I approached blogging from a software development perspective? (Blogging like a hacker)

This epiphany led to the creation of Jekyll, one of the early static site generators. Docs as Code approaches grew in popularity in parallel with the rising popularity of web API documentation, as more developers have been pulled into the documentation space. If you’re writing developer docs, Docs as Code fosters a collaborative environment between writers and developers with the documentation — regardless of whether that collaboration includes authoring, review, or publishing.

For more on Docs as Code, see the many posts I’ve written on my site:

And of course see Anne Gentle’s book on the subject, Docs Like Code, and this helpful Docs as Code page on Write the Docs.

As I gathered up these posts, I’ve realized just how much I’ve written about Docs as Code. That’s partly because I was writing about Docs as Code while this trend came out of obscurity and evolved into a common approach in tech comm. If you’re joining the ranks of tech comm in 2022 and writing dev docs, Docs as Code might now seem like the default approach. It didn’t used to be.

Why I embraced docs-as-code

I started using Docs as Code (specifically Jekyll) back in 2015 when I was working for 41st Parameter (acquired by Experian), and we were looking for a way to get out of Confluence (we were generating PDFs from Confluence pages and putting them in Dropbox for partners). We wanted to build a modern web experience for our docs. We were investigating various approaches, including DITA because we also had requirements to build PDF and also version our content. But the primary need was to modernize the documentation (i.e., bring it online). Tools like Jekyll made it easy to generate HTML and to theme the output. But this came with tradeoffs. With Jekyll, some of the more complex tech comm scenarios required us to figure out our own approach.

I started using Jekyll as a pilot for a specific project. I built a Jekyll doc theme, which surprisingly has since been forked and starred on GitHub over a thousand times. The pilot project became our standard approach, and the exploration of other systems faded away.

Jekyll suited me well in part because I’m tools savvy, having worked as a WordPress consultant creating themes and other implementations for years. I knew HTML, CSS, and JS well enough to do what I wanted. And Jekyll was simple enough that I could gut any web page into a template, pipe content into it using Jekyll’s scripting logic, and make the system do what I wanted.

My big breakthrough in building the theme was to create an expandable/collapsible sidebar that generated content from a YAML file. This robust sidebar was missing from most Jekyll blogging templates. Getting it right required me to understand how Liquid, Jekyll, and YAML worked. Once I did, I could create widgets and templates for virtually anything (I later contributed a tutorial on navigation to the official Jekyll docs).

With Jekyll’s flexibility and open code, I felt I could do practically anything. I made my theme’s links use entirely relative paths, which allowed me to build an output and view it offline. The files containing the output could be uploaded to any domain or environment (staging, production, or other) and be easily viewed. This was actually essential in our scenario because we needed to gate the docs, and our only recourse was to upload the content into Salesforce as a site there. (It was still annoying to upload, but it solved the authentication issues.)

I also created a PDF output using Prince. Again, this required some hacking with PDF layouts and custom CSS, but it wasn’t something I couldn’t figure out with enough tinkering. And I loved tinkering with Jekyll.

When I joined Amazon, one of my first projects was to help migrate off a CMS called Hippo (a Java-based CMS, rather than one built with PHP; Hippo is now called Bloomreach). I’d come in at the right time because developers were engaged in an enterprise-wide effort to migrate off of Oracle databases, and the Jekyll tooling fulfilled this requirement. No one wanted yet another CMS, and with both PHP and Oracle databases off-limits, there weren’t that many alternatives. Additionally, hosting sensitive content (such as confidential docs) on third-party servers was also restricted, which further limited our tool options.

Working in dev docs, I discovered that developers loved working with Jekyll because they could script the build workflows into their own, larger build workflows. The dev team ended up building Jekyll’s content output and pushing it into another template that they controlled. This resulted in more seamless branding. I wrote about this project here: Case study: Switching tools to docs-as-code.

On a personal level, when I first exploring Jekyll and tried to figure out themes, I realized that if I wanted to excel in this domain, I should flip my whole world to Jekyll. I didn’t want to maintain my blog on WordPress while using Jekyll at work. If I wanted to gain more familiarity and fluidity with both static site generators and version control in the Docs as Code world, I figured I should also use Jekyll for my personal blog.

So I made a rather large decision to abandon WordPress for my blog and to use Jekyll exclusively for authoring and publishing content. This shift did achieve my initial aims. With my API course, I’ve even built more sophisticated outputs that include PDF and ebook (both Kindle and EPUB) from the Jekyll source. All my personal sites continue to use Jekyll today.

Why didn’t I abandon docs-as-code

I didn’t abandon Docs as Code because it seems to be the right tool when working in developer documentation. I’ve noticed that even if developers don’t write docs in Markdown (because they don’t write docs, period), getting them to review docs goes much better if you use their same world of tools. Developers often want to see the exact changes that have been made so they can easily check to see what needs review without rereading the entire page. They also prefer smaller changes to review as well, even if there are multiple change requests to evaluate. Reviewing docs in these tool systems works pretty well.

Even as I’ve changed companies to Google and the toolset is no longer Jekyll, I’m still very much in a Docs as Code authoring and publishing system (see this talk by Riona Macnamara for more context). Much of the authoring complexity has been abstracted behind the scenes (and rightfully so), but I’m still working in Markdown, YAML, building from the command line, reviewing diffs through the same tools as developers, and more. And you know what? It works.

It seems like every big tech company uses Docs as Code in their developer documentation now. Big companies prefer to roll their own rather than go with out-of-the-box solutions, so there are some customizations and unique differences from one company to the next, but most of what I did with Jekyll and Liquid on my blog I can still do with the authoring systems at Google. In fact, I just needed to learn some Jinja templating rather than Liquid. Actually the code manipulation is even better than what Liquid offers, since I can create actual macros (like functions) and use them even more directly as code. However, since the authoring system is much more mature, the tools team has created widgets for almost every possible scenario already, so there’s not much need to do anything but work on content.

There’s another point worth mentioning for why Docs as Code has remained strong: it scales well for authors. You don’t have to provision an ever-increasing number of licenses for those contributing to docs. Anyone can get up and running using the same tools they’re probably already using for code, and the workflow for creating and publishing content feels second nature (for developers anyway) because it highly mirrors the existing developer workflows.

Current status

Docs as Code continues to be popular. The preferences for the static site generators, though, tend to be more shifty. Tides have shifted from Jekyll to Hugo, but there’s also a lot of fragmentation with no common standard for the static site generator (for example, Docusaurus, Gatsby, and MkDocs are also popular). The Git workflows also vary a lot from shop to shop.

So even if you’ve accrued a lot of experience using a particular static site generator and Git workflow for authoring/publishing, if you go to a new company, you might still have to re-learn the approach. Even so, once you convert to this model, it feels odd to even think of working any other way. I couldn’t imagine going back to a specific tool with a visual interface, or to a database-based CMS. I’ve pretty happy with the Docs as Code approach. Rarely do I encounter obstacles that I can’t overcome. And the minimalist approach with tools also fits a more minimal approach to the web that I think we’ll be seeing more of.

The one weakness of Docs as Code is the inability to purchase a larger system for managing all the files, similar to a CCMS. That larger system is basically Git and version control, but sometimes it would be nice to have a better way to manage metadata for files, to see where content is re-used, and more. Typically, companies build their own systems for these needs.

Takeaway

The same tools, processes, and workflows used to write code can also be used to write documentation.

Next post

Continue to the next post in this series: Remote work.

About Tom Johnson

Tom Johnson

I'm an API technical writer based in the Seattle area. On this blog, I write about topics related to technical writing and communication — such as software documentation, API documentation, AI, information architecture, content strategy, writing processes, plain language, tech comm careers, and more. Check out my API documentation course if you're looking for more info about documenting APIs. Or see my posts on AI and AI course section for more on the latest in AI and tech comm.

If you're a technical writer and want to keep on top of the latest trends in the tech comm, be sure to subscribe to email updates below. You can also learn more about me or contact me. Finally, note that the opinions I express on my blog are my own points of view, not that of my employer.