On Sat, Jul 20, 2019 at 8:41 AM Lassi Kortela <xxxxxx@lassi.io> wrote:
Arthur, would you be OK with adding a new CSS class to
<https://srfi.schemers.org/srfi.css> for links whose URL is shown in the document itself as the link text? I.e. something like:

<a class="url" href="https://example.com/foo">example.com/foo</a>

Whichever CSS class name and typography you prefer are fine. It could be in a monospace font, and CSS before and after pseudo-elements could be used to put angle brackets around the URL or something. But these are just suggestions.

Good idea.  Done, but with a different name:

a.eponymous {
  font-family: Monaco, Courier, monospace;
  overflow-wrap: break-word;
  word-break: break-all;
  word-wrap: break-word;
}