-
Notifications
You must be signed in to change notification settings - Fork 61
Links
MeanderingProgrammer edited this page Aug 8, 2024
·
11 revisions
Raw data being used:
# Links
- 
- [Markdown File](test.md)
- [Python File](test.py)
- [Website](https://test.com)
- [[wikilink]]
- [[wikilink|Uncyclolink Alias]]
- [Reference][example]
require('render-markdown').setup({
link = {
enabled = true,
image = ' ',
hyperlink = ' ',
highlight = 'RenderMarkdownLink',
custom = {
web = { pattern = '^http[s]?://', icon = ' ', highlight = 'RenderMarkdownLink' },
},
},
})
require('render-markdown').setup({
link = { image = ' ' },
})
require('render-markdown').setup({
link = { hyperlink = ' ' },
})
require('render-markdown').setup({
link = {
custom = {
python = { pattern = '%.py$', icon = ' ', highlight = 'RenderMarkdownLink' },
},
},
})