Reputation: 1129
I've the following lines in a markdown
file.
for i.MX 6UL
Here i.MX is displayed as a link (in blue text and clickable) but I don't want it to be.
How can I display it as a normal text?
Upvotes: 0
Views: 215
Reputation: 41
Try for i\.MX 6UL
. The backslash should escape the autolink.
The other thing you could try is something like for i.<i></i>MX 6UL
or for i.<span></span>MX 6UL
. This breaks up the link using basic html.
Upvotes: 1