-
Notifications
You must be signed in to change notification settings - Fork 61
Links
MeanderingProgrammer edited this page Oct 12, 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]
- <[email protected]>
require('render-markdown').setup({
link = {
enabled = true,
image = ' ',
email = ' ',
hyperlink = ' ',
highlight = 'RenderMarkdownLink',
wiki = { icon = ' ', highlight = 'RenderMarkdownUncycloLink' },
custom = {
web = { pattern = '^http[s]?://', icon = ' ', highlight = 'RenderMarkdownLink' },
},
},
})
require('render-markdown').setup({
link = { image = ' ' },
})
require('render-markdown').setup({
link = { email = ' ' },
})
require('render-markdown').setup({
link = { hyperlink = ' ' },
})
require('render-markdown').setup({
link = {
custom = {
python = { pattern = '%.py$', icon = ' ', highlight = 'RenderMarkdownLink' },
},
},
})