73 lines
1.0 KiB
Plaintext
73 lines
1.0 KiB
Plaintext
Include: vader_setup.vader
|
|
|
|
Given vimwiki (Text that is not a wikilink):
|
|
test
|
|
www.google.com
|
|
https://www.google.com
|
|
multiple words
|
|
|
|
Execute (Set syntax to default):
|
|
call SetSyntax('default')
|
|
|
|
Do (Create links default syntax):
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
|
|
Expect (Vimwiki links):
|
|
[[test]]
|
|
[[www.google.com]]
|
|
[[https://www.google.com]]
|
|
[[multiple words]]
|
|
|
|
Execute (Set syntax to markdown):
|
|
call SetSyntax('markdown')
|
|
|
|
Do (Create links markdown syntax):
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
|
|
Expect (Markdown links):
|
|
[test](test)
|
|
[www.google.com](www.google.com)
|
|
[https://www.google.com](https://www.google.com)
|
|
[multiple words](multiple words)
|
|
|
|
Execute (Set syntax to mediawiki):
|
|
call SetSyntax('mediawiki')
|
|
|
|
Do (Create links mediawiki syntax):
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
j
|
|
v$
|
|
\<Enter>
|
|
|
|
Expect (Mediawiki links):
|
|
[[test]]
|
|
[[www.google.com]]
|
|
[[https://www.google.com]]
|
|
[[multiple words]]
|
|
|
|
Include: vader_teardown.vader
|