logbot: Very long URLs can mess up the layout and should be truncated #27
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See attached screenshot, when long URLS are logged they could potentially mess up the layout because they normally dont wrap but grow the parent container. My suggestion is the following:
Turn the code that turns links in messages into HTMLs in to:
<a href='https://www.internationaleonline.org/opinions/1067_brave_new_university_technology_and_neoliberalism_in_the_postpandemic_university_and_the_strange_case_of_distance_arts_education'>https://www.internationaleonline.org/opinions/1067_brave_new_university_technology_and_neoliberalism_in_the_postpandemic_university_and_the_strange_case_of_distance_arts_education</a>
In to:
<a href='https://www.internationaleonline.org/opinions/1067_brave_new_university_technology_and_neoliberalism_in_the_postpandemic_university_and_the_strange_case_of_distance_arts_education'>https://www.internationaleonline.org/[...]</a>
Or define a max amount of characters after which the display URL is truncated!