2021-10-29 19:40:49 +00:00
|
|
|
/*
|
|
|
|
* Wiki - A wiki with editor
|
|
|
|
* Copyright (c) 2021 Peter Stuifzand
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import assert from 'assert'
|
|
|
|
import MarkdownIt from "markdown-it";
|
|
|
|
import MarkdownItWikilinks2 from "../src/wikilinks2";
|
|
|
|
|
|
|
|
const MD = new MarkdownIt({
|
|
|
|
linkify: false,
|
|
|
|
highlight: function (str, lang) {
|
|
|
|
if (lang === 'mermaid') {
|
|
|
|
return '<div class="mermaid">' + str + '</div>';
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
MD.use(MarkdownItWikilinks2({
|
|
|
|
baseURL: 'http://localhost/',
|
|
|
|
uriSuffix: '',
|
|
|
|
relativeBaseURL: '/edit/',
|
|
|
|
htmlAttributes: {
|
|
|
|
class: 'wiki-link'
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
|
|
|
|
describe('MD', function () {
|
|
|
|
it('parseLinks', function () {
|
|
|
|
assert.deepStrictEqual(MD.renderInline("#[[TODO]]"), '<input type="checkbox" class="checkbox">')
|
|
|
|
assert.deepStrictEqual(MD.renderInline("#[[TODO]] #[[DONE]]"), '<input type="checkbox" class="checkbox"> <input type="checkbox" class="checkbox" checked>')
|
|
|
|
})
|
|
|
|
it('parseLinks 2', function () {
|
|
|
|
assert.deepStrictEqual(MD.renderInline("#[[TODO]] #[[DONE]]"), '<input type="checkbox" class="checkbox"> <input type="checkbox" class="checkbox" checked>')
|
|
|
|
})
|
|
|
|
it('parseLinks 3', function () {
|
|
|
|
assert.deepStrictEqual(MD.renderInline("test #[[TODO]] test2"), 'test <input type="checkbox" class="checkbox"> test2')
|
|
|
|
})
|
|
|
|
it('parseLinks 4', function () {
|
2021-10-29 20:43:34 +00:00
|
|
|
assert.deepStrictEqual(MD.renderInline("test [[test]] [[test2]] [[test3]]"), 'test <a href="/edit/test" class="wiki-link">test</a> <a href="/edit/test2" class="wiki-link">test2</a> <a href="/edit/test3" class="wiki-link">test3</a>')
|
2021-10-29 19:40:49 +00:00
|
|
|
})
|
|
|
|
it('parseLinks 5', function () {
|
2021-10-29 20:43:34 +00:00
|
|
|
assert.deepStrictEqual(MD.renderInline("test [[test]]"), 'test <a href="/edit/test" class="wiki-link">test</a>')
|
2021-10-29 19:40:49 +00:00
|
|
|
})
|
|
|
|
it('parseLinks 6', function () {
|
2021-10-29 20:43:34 +00:00
|
|
|
assert.deepStrictEqual(MD.renderInline("test [[test]] [[test2]]"), 'test <a href="/edit/test" class="wiki-link">test</a> <a href="/edit/test2" class="wiki-link">test2</a>')
|
2021-10-29 19:40:49 +00:00
|
|
|
})
|
2021-10-29 20:14:56 +00:00
|
|
|
|
|
|
|
it('parseLinks tag', function () {
|
2021-10-29 20:43:34 +00:00
|
|
|
assert.deepStrictEqual(MD.renderInline("test #[[test]]"), 'test <a href="/edit/test" class="wiki-link">#test</a>')
|
2021-10-29 20:14:56 +00:00
|
|
|
})
|
2021-10-29 20:59:33 +00:00
|
|
|
|
|
|
|
it('parseLinks double url', function () {
|
2021-11-06 13:37:03 +00:00
|
|
|
assert.deepStrictEqual(MD.renderInline("[[test [[link]] test2]]"), '<a href="/edit/test_%5B%5Blink%5D%5D_test2" class="wiki-link">test [[link]] test2</a>')
|
2021-10-29 20:59:33 +00:00
|
|
|
})
|
2021-10-29 19:40:49 +00:00
|
|
|
})
|