All Black Lives Matter

Writing from my iPad with version control and Markdown

Aug 5, 2021

My new writing workflow

  Back to article list

Motivation

As a software developer, and someone who voice codes, I prefer to work in a command line / simple text editor environment when possible. GUI’s and things I have to click around in add an extra layer of friction for me. Software such as MS Word or Google Docs are overbearingly WYSIWYG and mouse click-dependent, they get in the way.

As an alternative to WYSIWYG editors, A lot of folx use Markdown on their blogs as a means of keeping their content framework-agnostic. I am among those who appreciate the simplicity of writing in Markdown. To be clear, I do not use Markdown on my blog / personal site. For my personal work, I experience too much frustration with the “one size fits all” approach to building websites with Markdown or a CMS. I’d prefer to retain the flexibility of writing in HTML/CSS/JS. Aside from publishing my works on my website, much of my writing process does indeed happen in Markdown, and I treat my Markdown files as the source of truth with version control.

As a professional software developer, I spend far too many hours in front of my computer. Thus, I would like the option to read, research, or write in a different setting away from my desk, such as chilling in my hammock with my iPad. Since I keep my developer's journal, blog, and other notes in Markdown files and in version control, I set out to find a way to access these files and edit them on my iPad. At first, I was thinking I would have to do something elaborate like host VS Code on a server or edit the files in my browser on GitHub. Luckily, it didn’t take too much digging to discover there’s good native software for the iPad that makes setting up this workflow easy. This workflow consists of a combination of two apps, Working Copy and Ulysses (or iA Writer).

Version control

Working Copy is a “powerful Git client for iOS that clones, edits, commits, pushes, & more”. It's an intuitive GUI for Git. If you are familiar with Git, then getting up to speed with Working Copy won’t take you but a few minutes.

Furthermore, it should be noted that Working Copy has a built-in editor. Hence, this workflow can work with Working Copy alone, but the writing experience won’t be as eloquent.

Edit in place

The key to using version control with any file editing app on the iPad is that the apps used must take an *edit in place* approach to working with files. This contrasts with many iOS apps that tend to keep files locked away and exclusively accessible from within the respective app. More and more apps are taking on the edit in place mindset, which has become more justified since Apple introduced Files on iOS. As a result, you can initialize a Git repository with Working Copy, and then you can use an *edit in place* file editor of choice to create and edit files within the repository. Any changes to a file shows immediately in all apps that are used to access the file.

Markdown

Writing in Markdown is becoming increasingly popular, and for good reason. Markdown is an easy markup language to learn. Once you understand the basics of Markdown, it becomes fa-solidter to format your document inline as you write, rather than fiddling with the myriad of formatting buttons like one would find in MS Word or Google Docs.

Markdown editors

The nice thing about Markdown editors is that they have clever ways of quasi-rendering the results of your Markdown syntax right inside the editor as you work. It eliminates the urge to have an editor window and a render window open side-by-side; as would be the case with a more traditional tool like VS Code.

Markdown editors take a minimalist approach. They intentionally stay out of the way to offer a focused, distraction-free writing experience.

Ulysses

Ulysses is a fantastic Markdown editor. The biggest complaint folx have with Ulysses is that it is subscription-based; $6 per month or $50 per year. It’s intuitive and easy to use, and it comes with a full-featured file manager built in. It feels natural to work with for anyone who is used to using Finder on macOS or Explorer on Windows, and is a standard expectation if one is used to working with code editors on their computer. The built-in file manager makes perfect sense when working with Git repositories.

Ulysses has other useful built-in features such as providing statistics on your document such as word count, character count, time spent working, and it auto-generates an outline of your document. It has a powerful spelling, style, and grammar checker built-in; but it is a web-based service, so it will ask you for access permission before it is enabled.

Ulysses is also customizable. Not so much that you will spend loads of time fiddling with settings, but enough to get it feeling good for a persons individual needs/preferences.

iA Writer

iA Writer is a compelling alternative to Ulysses. It offers some similar features to Ulysses, but is noticeably less feature full. It is not as customizable as Ulysses, making it feel more opinionated. My favorite of the features that it does offer is the built-in style checker. I like how it shows in real time if you are using superfluous language, helping one to write more concisely. iA Writer comes at a one-time cost of $30. I think a lot of folx prefer iA Writer since it is not subscription-based.

My biggest complaint about iA Writer is that the file management is weak. You have to pull in one file at a time, instead of having access to an entire directory. All files that you have opened with iA Writer appear in one flat list, lacking hierarchical organization. In other words, there’s not a built-in file manager. You really have to dig for the file you would like to edit.

While frustrating, iA Writer’s lack of a file manager is not a showstopper. iA is otherwise pleasant to use, and it *edits files in place*, so it fits into the Git workflow.

Conclusion

In my time using this workflow, I’ve been enjoying the freedom and flexibility that it is affording. I feel like I am controlling my files, not the apps. The best part is that this workflow is platform-agnostic and everything is in version control.

The clarity that comes from writing in a proper Markdown editor on the iPad cannot be overstated. The writing experience is focused and distraction free. It is helping to overcome my “writers block” and enabling me to be more productive by alleviating the fatigue I experience from being tethered to my computer for long hours.

Working Copy is a powerful yet easy to use Git client. It makes keeping any work that I do on my iPad in version control simple. This allows me to keep my work in sync across all my devices and ensures that work from one device doesn’t accidentally overwrite work from another.

There is a plethora of Markdown editor options available. Not all allow *edit in place*, making them unsuitable for this workflow. Of the Markdown editors that I tested, Ulysses and iA Writer were my preferred options. However, Ulysses is the best choice with its file management capabilities, rich set of features, and customizability.

Both Ulysses and iA Writer have native apps for iOS and macOS, potentially making them a great choice to use across all devices. Although I have not tested the desktop apps yet, I expect them to be functionally similar to their iOS counterparts. Thus far, I’ve been using VS Code for writing in Markdown on my Mac which has worked well enough, but lacking the helpful features that these apps offer.

Tags

Git

GitHub

Markdown

Writing