Reputation: 16802
Some algorithms in SSH are denoted like [email protected]
. The problem with this is that if you mention this in a Markdown file, Docusaurus 1 will convert it to a mailto: hyperlink. I don't mind it being done for legit emails but that's not a legit email. I mean, I suppose it could be, but in this context, it's not supposed to be an email address.
I could do what I did here and turn it into a code block but I don't want to turn every algorithm name into a code block. eg. aes128-ctr
doesn't need to be a code block to prevent it from being a hyperlink. And sure, in this context, making it a code block makes sense, but imho it doesn't make sense in my context (using them in a table, listing the supported algorithms for various different SSH clients).
Thanks!
Upvotes: 3
Views: 924
Reputation: 53169
This is because linkify
(a Remarkable plugin) is turned on by default in the core and there's no way to turn it off at the moment unless more configs are added to siteConfig.js
, which we are hesitant to add at this point in time since we're focusing on Docusaurus 2. Docusaurus 2 doesn't have linkifying behavior by default, so you could consider using that instead.
Pull requests are welcome though, or the aes128-gcm[]()@openssh.com
hack which @chris mentioned in a comment above.
Upvotes: 2