Reproduction steps
- edit a page with blocknote
- add twi links one internal, one external
- observe if there is a visual clue for the external link
- save
- # observe if there is a visual clue for the external link in view mode
Expected In the 3 and 5, a visual clue indicates the external link Actual In the 3 and 5 the visual clue is missing Analysis In edit mode, this is because it was never introduced in Blocknote. In view mode, this is because the markdown render indicates only a class on internal link, while the css class wikiexternallink is expected on external link (the style already exists).
<p>
<span class="wikilink"><a href="http://localhost:15680/xwiki/bin/view/Sandbox/TestPage2">internal link</a></span>
</p>
<p>
<span class="wikiexternallink"><a href="https://mleduc.xyz">external link</a></span>
</p>
|