Logged In: NO

On my site I've allowed single-word links by making the
following change to Link.pm:
Replace: our $link_pattern = "$link_word(_$link_word)+";
With: our $link_pattern = "($link_word)*(_$link_word)+";

This will allow single-word links with a leading underscore.
But you can choose any regex to go here.