2020-04-18 20:10:05 +02:00
|
|
|
Include: vader_includes/vader_setup.vader
|
|
|
|
|
|
|
|
Execute (Copy Wiki's Resources):
|
|
|
|
Log "Start: Copy Resources"
|
|
|
|
call CopyResources()
|
|
|
|
|
2020-07-26 06:51:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#################################################
|
|
|
|
Execute (Log):
|
|
|
|
Log '#473: Syntax "local:" doesnt work as expected. #473'
|
|
|
|
|
|
|
|
Given vimwiki (Void Md):
|
|
|
|
|
|
|
|
Execute (Edit Test473 Wiki):
|
|
|
|
edit $HOME/testwiki/TestHtml.wiki
|
|
|
|
|
|
|
|
Do (Add local link: [[local:$HOME/here|Link]]):
|
|
|
|
:edit $HOME/testwiki/Test473.wiki\<CR>
|
|
|
|
i
|
|
|
|
[[local:
|
|
|
|
\<C-r>=$HOME\<Cr>
|
|
|
|
/here|Link]]
|
|
|
|
\<Esc>
|
|
|
|
:call WriteMe()\<Cr>
|
|
|
|
:Vimwiki2HTML\<Cr>
|
|
|
|
|
|
|
|
|
|
|
|
Execute (Save and Convert to html):
|
|
|
|
edit $HOME/testwiki/Test473.wiki
|
|
|
|
Vimwiki2HTML
|
|
|
|
AssertEqual '[[local:'.$HOME.'/here|Link]]', getline(1)
|
|
|
|
|
|
|
|
|
|
|
|
Given (Void Html):
|
|
|
|
|
|
|
|
# TODO mutualise
|
|
|
|
Do (Get Html body):
|
|
|
|
:read $HOME/html/default/Test473.html\<CR>
|
|
|
|
# Goto body
|
|
|
|
gg/<body>\<CR>
|
|
|
|
# Copy in b
|
|
|
|
"bdat
|
|
|
|
# Delete All
|
|
|
|
ggdG
|
|
|
|
# Paste body
|
|
|
|
"bP
|
|
|
|
# Remove last line
|
|
|
|
Gdd
|
|
|
|
# Save (Not necessary)
|
|
|
|
:write
|
|
|
|
|
|
|
|
Expect (Local link):
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="../../here">Link</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
|
#################################################
|
2020-04-18 20:10:05 +02:00
|
|
|
Given (Void):
|
|
|
|
|
|
|
|
Execute (Edit TestHtml Wiki):
|
|
|
|
edit $HOME/testwiki/TestHtml.wiki
|
|
|
|
AssertEqual $HOME . '/testwiki/TestHtml.wiki', expand('%')
|
|
|
|
AssertEqual 'default', vimwiki#vars#get_wikilocal('syntax')
|
|
|
|
AssertEqual 0, vimwiki#vars#get_bufferlocal('wiki_nr')
|
|
|
|
|
|
|
|
Do (Markdwon with %plainhtml):
|
|
|
|
:edit $HOME/testwiki/TestHtml.wiki\<CR>
|
|
|
|
i%plainhtml<div id="test">\<CR>
|
|
|
|
my paragraph\<CR>
|
|
|
|
%plainhtml</div>\<CR>\<Esc>
|
|
|
|
:set bt=\<CR>
|
|
|
|
:write\<CR>
|
|
|
|
|
|
|
|
Execute (Save and Convert to html):
|
|
|
|
edit $HOME/testwiki/TestHtml.wiki
|
|
|
|
Vimwiki2HTML
|
|
|
|
|
|
|
|
Given (Void):
|
|
|
|
|
|
|
|
Do (Get Html body):
|
|
|
|
:read $HOME/html/default/TestHtml.html\<CR>
|
|
|
|
# Goto body
|
|
|
|
gg/<body>\<CR>
|
|
|
|
# Copy in b
|
|
|
|
"bdat
|
|
|
|
# Delete All
|
|
|
|
ggdG
|
|
|
|
# Paste body
|
|
|
|
"bP
|
|
|
|
# Remove last line
|
|
|
|
Gdd
|
|
|
|
# Save (Not necessary)
|
|
|
|
:write
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Expect (Plain Html):
|
|
|
|
# the whole default html file should be here as a base + the modifications
|
|
|
|
# from "Given"
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="test">
|
|
|
|
<p>
|
|
|
|
my paragraph
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
Include: vader_includes/vader_teardown.vader
|