We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c48fabd commit aba1b74Copy full SHA for aba1b74
1 file changed
README.md
@@ -38,13 +38,11 @@ You can also set custom renderer for the internal wiki links (the *[[link]]* or
38
39
```js
40
function linkRenderer(link) {
41
-gh_name = githubname(link) + '.md';
42
-return '<a href="' + module.wikiurl + gh_name + '">' + link + '</a>';
+ return 'Hey here is a link: ' + link;
43
};
44
45
function linkRendererTitle(title, link) {
46
- gh_name = githubname(link) + '.md';
47
- return '<a href="' + module.wikiurl + gh_name + '">' + title + '</a>';
+ return 'Hey here is a link: ' + link + ' with a title: ' + title;
48
49
50
githubwiki.setMarkedOptions({
0 commit comments