logoalt Hacker News

bryanrasmussenyesterday at 8:01 PM3 repliesview on HN

Their long S is really annoying, although truthfully I generally am unfamiliar with the long s in modern fonts so I don't KNOW if it really looks worse than it needs to, but I feel it looks worse that it needs to and that makes it harder, for example I thought lest at first was left and had to go back a couple words after.

Anyway as I know from my reading history at 1400 it gets difficult, but I can make it through 1400 and 1300 with difficulty, but would need to break out the middle English dictionaries for 1200 and 1100. 1000 forget it, too busy to make that effort.


Replies

krackersyesterday at 9:13 PM

  (function() {
    const SKIP_PARENTS = new Set(["SCRIPT", "STYLE", "NOSCRIPT", "TEXTAREA"]);
    const walker = document.createTreeWalker(
      document.body,
      NodeFilter.SHOW_TEXT,
      {
        acceptNode(node) {
          const p = node.parentNode;
          if (!p || SKIP_PARENTS.has(p.nodeName)) return NodeFilter.FILTER_REJECT;
          if (p.nodeName === "INPUT") return NodeFilter.FILTER_REJECT;
          return NodeFilter.FILTER_ACCEPT;
        }
      }
    );

    let node;
    while ((node = walker.nextNode())) {
      node.nodeValue = node.nodeValue.replace(/ſ/g, "s");
    }
  })()
show 1 reply
BobAliceInATreeyesterday at 9:56 PM

Interestingly I found the long s annoying and I had to think every time I saw it, but I quickly got used to and could read it naturally after a few paragraphs.

isoprophlexyesterday at 8:08 PM

Hmm, I thought it wafnt fo bad, myfelf

show 1 reply