Fixed missing emails in the author section.
As per #7936, here is the attempt in order to fix the missing emails as described.
Some things to note, most of the email format have the characters /dot/ and /at in them and that they had to be converted to the correct characters of . and @ respectively.
LADSPA plugins, however, are a different story. Originally, the solution was to manually change the email format but it did not work since it is dependent on the ladspa repository. Meaning, no changes can be made in , unless that repository is changed. Anyway, some author emails have a, rather, peculiar email format and that they've been manually changed. This case happens for the authors: Andy Wingo and Jesse Chappel. They both have spaces, and they are inconsistent with the other authors' emails present in the plugins/swh folder
Tested this, the emails for LADSPA plugins are still missing. The only change is that the full email addresses for Andy and Jesse are fully missing rather than partially missing. ~~I assume this is because removing the spaces is allowing the full <[email protected]> to be interpreted as an invalid markup tag, whereas before <foo at bar dot net> would have been rendered as <foo.~~
Edit: It looks like the text is just fine, but now that there are no spaces in the email address, it is wrapping it to the next line, and the label itself is not resizing to accommodate and so the text gets clipped out of existence. Disabling text wrapping fixes this, but of course that means text can't wrap anymore.
The text wrapping issue was driving me crazy, so I changed the way LADSPA plugin descriptions are rendered to be more similar to how native plugin descriptions are rendered. This includes slightly more readable descriptions for LADSPA plugin properties for users who don't read the LADSPA spec for fun (LADSPA_PROPERTY_REALTIME, LADSPA_PROPERTY_INPLACE_BROKEN, LADSPA_PROPERTY_HARD_RT_CAPABLE).
This is a bit drastic and I thought about opening a new PR for this, but it's directly related to the line wrapping problem so...