Hemingway Editor 2 Review

Originally published at http://www.sitepoint.com/hemingway-editor-2-review/


In 2014, Jacco Blankenspoor took a look at Hemingway Editor’s new desktop app. At the time, Jacco decided he’d rather stick with the online version of Hemingway—not least because of a display bug in the desktop version. Now, a year later, our resident PHP editor Bruno Skvorc takes a look at Hemingway Editor 2 to see how it stacks up—particularly from a technical writer’s point of view.


As SitePoint’s editor for the PHP channel, I deal with a lot of text. Hundreds of emails and dozens of drafts fly before my eyes every week. This may not be obvious, but a lot goes into making the drafts publishable. There’s formatting, language corrections, image processing, code testing, syntax highlights, and more.

Hemingway App Logo

So it’s important to be able to automate as much of the low-mental-effort work as possible. Automation allows editors to focus more on content and code. This, in turn, prevents the wasting of time. It is where tools like Hemingway can help most.

What is Hemingway?

Hemingway is a writing assistance tool. It keeps an eye on one’s phrasing and sentence structure, and suggests fixes. Typical fixes include shorter sentences, active instead of passive voice, and fewer adverbs. The app is also coupled with a built-in spellchecker for several English dialects.

I’ve taken a thorough look at Hemingway Editor 2, and what follows is a list of pros and cons. The list may or may not apply to you; it depends on how much writing or editing you do and in which format. As a programmer, I’m also interested in how Hemingway handles things like code and Markdown (MD) syntax. My hope is that the list will serve as a useful guideline when considering the tool for daily use.

Pros

Language analysis, and suggestions for fixes, stand at the core of Hemingway, and are its most useful feature by far.

Hemingway highlights the sentences it dislikes and makes you stop and think before continuing. The complicated, long sentences will glow red, drawing your attention first. Those only slightly too long are highlighted in yellow.

In version 2, I haven’t come across the display bug that seemed to plague the desktop app when it was first launched.

Sometimes it feels like it assumes the reader is too dumb:

Is this really too long a sentence? In most cases, it does slow the writer down in a good way:

This forces a writer to think about linguistic constructs and rephrasing for wider appeal. In all honesty, though, I do consider SitePoint’s audience to be above grade level reading. A “preferred grade” setting would be useful for more scientific/technical texts.

I’m not sure I would agree with the fierce negativity towards adverbs:

… but I definitely agree with avoiding the passive voice, so having that detected is fantastic:

Here’s an example of a paragraph that needed rewriting:

Wow, that paragraph lit up like a Christmas tree, huh? Let’s try to fix it. The first red sentence uses the passive voice and is too complex.

That’s better. What about the second monstrosity, though?

Hmm, this didn’t work. I wonder why. It’d be great if Hemingway told me exactly what it’s bothered by. It did make me think about whether the last part is even necessary, though, so I removed it.

Fixing the paragraph reduced the text’s grade from 8 to 7. Success!

Unfortunately, that’s about it for the good parts.

Cons

Right off the bat, no support for Markdown is a slap in the face. Version 1 used to have it, but for some reason, it was removed.

Hemingway’s editor field is powered by CKEditor, and uses CK’s rich text functionality. This means we get inline formatting that can theoretically get exported into MD and/or HTML. However, we’re at the mercy of the exporter which, in this case, is entirely inflexible.

There’s no support for images. For me, that’s a must have in any writing environment today. If it supported MD, this would be enabled by default. Opting for a custom “rich” format grounded the editor before it had a chance to take off.

There’s also no way to define custom export methods, despite the Hemingway website’s claims to being CMS-friendly:

It’s a pity there’s no support for code snippets, either.

The editor does support export to MD, but without images and code, so there’s little point to it for my workflow. A lot of other information gets lost in the export process, too. For example, MD doesn’t support the target attribute in links (i.e. “_blank”). Hemingway does. Thus, it gives its (non technical) users the impression that links will open in new tabs when exported to MD. Naturally, this is not so and can lead to confusion.

The editor features a Save As option, and although it does let users save a file with any extension they desire, it will not open these files. So saving a file as MD, or even trying to open one that is MD, simply isn’t available. Further, saving a file with Save As will actually not acknowledge the save, and will warn the user about unsaved changes.

Aside from the lack of Markdown support, there are also minor UI/UX gripes. First, the word counter is only visible in Edit mode, not in Write mode. A counter is very, very useful when writing articles that have a length range. Having to switch is distracting and breaks the writing flow.

Second, the full screen mode could be fuller. There’s a lot of wasted real estate which could be better used to improve readability on wider screens:

Also due to CKEditor, the browser’s spellchecker isn’t triggered immediately after a misspelling. This is especially true on larger bodies of text. Not a big problem, but it can be distracting.

There’s also the inconsistency of the UI. To get HTML output, you go to Save As, while getting MD or Docx requires going to File -> Export. And speaking of exports, an on-screen view of the export would be much better than a file-based export. More often than not, you just want it in your clipboard.

Some of the UI grouping is odd, too. For example, the outdent and indent buttons are on the same level as all other formatting controls. Still, they only work on list elements, and only for a single level in either direction. Pasting is also iffy: it’ll make the screen jump to an odd location in the text.

And then there are bugs. The two deal breakers I found were:

  • exporting a file into a folder where a file of the same name already exists and confirming the overwrite will silently fail

  • HTML entities get encoded when being exported, so your MD ends up looking like this:

    This is unacceptable; it’s as if the app wasn’t tested at all.

Continue reading at http://www.sitepoint.com/hemingway-editor-2-review/

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.