Search code examples
asciidoc

How to fix 'Link Highlighting in Inline Code'?


The method of writing a code element in Asciidoc is by writing an element enclosed in the grave accent(`):

`var`

And, the method to show a link is:

link:www.awebistelink.com[var]

I am attaching an image to show these two on a website that renders Asciidoc Image Displaying the output in an asciidoc document

When I am trying to show a link highlight of a code element inside an inline code by writing:

`link:www.awebistelink.com[var]`

It renders perfectly fine on Asciidoc Please see it here

But on the website, it doesn't show any link, and simply shows a code element like as if we declared it simply as

`var`

Solution

  • I found the answer, it should be

    `link:www.awebistelink.com[var]`
    

    I still don't know how it worked but now it works just fine as intended.