Published on to joshleeb's blog
G’day!
Continuing from last month, the goal for March was to complete the text styling implementation for Tera. Thankfully I can now say this is done, or at least done enough.
Figure 1 shows the styling parameters applied in various combinations. There’s font styling that can switch between regular, italic, or any other font variation; and we can set the foreground and background colors. The screenshot shows styling by line but the API also supports styling by region.
Some of the styling features I’ve talked about in the past aren’t in this demo, noticeably underline and strikethrough. There’s no reason that Tera can’t support these right now. I just had enough of playing around with font metrics to work on implementing them this month.
Understanding the vertical font metrics was very interesting and very tedious, and similarly to ligatures I was surprised by some the things I discovered. This could be a separate blogpost (or series) which I’ve added to my ever growing backlog.
One result I will briefly mention is for calculating line height. Some of the font manuals I’ve seen line height described as $ ascent + \lvert descent \rvert + linegap$. Yet, this does not correspond to the line height observed in the Zed and VSCode editors.
Instead, these editors appear to set the line height (in pixels) to the font size (in points). That is to say a font size of 13 points will render lines with a height of 13 pixels before applying any multipliers or additional padding. For Zed, this calculation is implemented in an older version of the codebase here.
To understand why it’s okay for font size to be used as the line height we need to look deeper into how point sizes are converted into pixels. I won’t go into that here but there are some useful docs out there on this such as the FontLab Help pages.
Now, the next phase for Tera will be to build the editor. This involves handling buffers, responding to keyboard and mouse inputs, opening and saving files, etc. There’s a lot to do and before jumping in I need to spend some time thinking, researching, and mulling over ideas.
In the mean time, I’ll be switching back to work on Pinto again. I started by collecting my recent thoughts on Pinto: on where it is now and where I should explore next.
Conceptually, the core of Pinto has been bookmarking. There are a number of interesting features and ideas that are built atop this core but they are essentially relying on a bookmarking system at the center.
The working demo I’ve been using is a realization of this idea. Using it has been great. It’s been far better than other tools I’ve used to manage links and articles. But there has been something not quite right about it.
It’s true that the tagging system (unsurprisingly) struggles to scale as the volume of bookmarks increases: not in a technical sense but as an organizational system. Having Scoped Tagging delays the scaling issues but they catch up eventually. Though I think this is a symptom of a deeper misalignment with what I’m really looking for with Pinto.
So, instead of bookmarking and meticulously collecting links, my feeling is that Pinto should be moving in a direction that has the core idea of building and curating your own subgraph of the web. I can’t fully explain why yet but I’m excited to continue exploring this idea.
This will be my focus for next month. For the demo specifically, I’ll be starting on a command line tool to get to a working state quicker than if I were to build another local site and web service. I’m also planning for this to be my first (semi-)serious OCaml project so reducing the scope will go an extra long way to help make progress.
That’s all for now, see you next month!