Docsify allows you to extend Markdown link syntax with special attributes passed inside single quotes.
Disable a link
Use :disabled to make a link non-clickable.
Ignore compilation (href)
By default, Docsify compiles relative links to internal routes (e.g., /demo/ becomes /#/demo/). To link to an actual file or external path without Docsify's routing interference, use :ignore.
You can also provide a title using the title keyword.
Set link target
Use :target to specify where the link should open (e.g., _blank or _self).
[link](/demo ':disabled')
[link](/demo/ ':ignore')
[link](/demo/ ':ignore title')
[link](/demo ':target=_blank')
[link](/demo2 ':target=_self')