Lower than and greather then are replaced even written as & … ; on this forum …
And they are also replaced in code blocks, what should not take place and looks like a bug in this forum script.
So once more this way:
1) HTML code, for example [lower than]a href … can’t be used, because [lower than] and [greather then] are replaced by their html codes. So option allowing this is needed. Maybe for chosen links only.
Here is example workaround which worked for me, but perhaps it is risky or incorrect.
render-link-library-sc.php file – these lines:
$descnotes = esc_html( $linkitem[‘link_notes’], ENT_QUOTES );
$desc = esc_html($linkitem[‘link_description’], ENT_QUOTES);
can be replaced by
$descnotes = $linkitem[‘link_notes’];
$desc = $linkitem[‘link_description’];
(the same but without ENT_QUOTES)
2) link_description field in the links table in the MySQL database is too short (varchar(255)) sometimes. I changed it to TEXT without length (255) to import correctly old data from another php script, but probably php code should be modified too, because it verifies somehow length of description entered by submitter.