OpenTypography v1 – backend support
About two years ago Opentypography was born, and together with FontDeck the idea was tested for a few typefaces in their collection. You can read the release post about the
A few months ago I started converting the Javascript solution to a more robust php solution.
The goal is to have something running in the background of cms’s like Wordpress, Ghost, Drupal or lighter platforms like our discontinued Skrivr.
The idea is firstly to automate as much of the typographic details in a text as possible. But secondly to include more intelligent features in the solutions.
Core features of the solution
- Basic ligatures (fi, fl)
- Other ligatures (fj, ffi, ffl, ffj and more)
- Lining and old-style numerals
- True small-caps
- Replacing uppercase with small-caps for abbreviations
- Superscripted symbols such as ® and ™
- Replacement of foot and inch-marks for correct quotation marks
- Correct replacement of en and em dashes
Those typographic features in its most rudimentary versions has been finished in the php version, and after fixing some small-caps abbreviation-bugs I will pretty soon make the first real tests on this site.
Top: Text without typographic editing Bottom: Text automatically edited with the OpenTypography solution
Extended features – formatting numerals
As you see, the core features doesn’t cover all the typographic issues that might occur in a text.
I want to add further intelligence to the solution. If we look at some of the most common shortages caused by todays software and keyboard layouts it is mostly the widely spread misusage of hyphens, minuses or en- and em-dashes that is the issue. But solving this is way more complex than simply replacing quotation marks and ligatures. To know if a en/em-dash is separating or combining words and numbers we have to know the language context they are in.
That is what I’m currently working on. And I have decided to focus on numbers and formatting those in a as correct context as possible.
Examples of what has to be programatically detected:
The hyphen in «
The numerals in «The organization spent
The key to this, I think, will be looking around the numbers and see what precedes and succeeds them. Based on that we can get clues on how to format them.
So it doesn’t take a neurosurgeon to realize that there is a horseload of work ahead to make that work.