qqzsxyz / vimwiki

Automatically exported from code.google.com/p/vimwiki
0 stars 0 forks source link

Multiline list doesn't work #423

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.type the following in the test.wiki
  * Bulleted list item 1
    List item 1 continued line.
    List item 1 next continued line.
  * Bulleted list item 2
    * Bulleted list sub item 1
      List sub item 1 continued line.
      List sub item 1 next continued line.
    * Bulleted list sub item 2
    * etc.
2.run vimwiki2html
3.check the html

What is the expected output? What do you see instead?
expected output:multiline list
what i see: one line list seperated with space

What version of the product are you using? On what operating system?
vimwiki2.1, vim 7.3, windows xp

Please provide any additional information below.
the html generated is :
<ul>
<li>
Bulleted list item 1
    List item 1 continued line.
    List item 1 next continued line.

<li>
Bulleted list item 2

<ul>
<li>
Bulleted list sub item 1
      List sub item 1 continued line.
      List sub item 1 next continued line.

<li>
Bulleted list sub item 2

<li>
etc.

</ul>

Original issue reported on code.google.com by huangy...@gmail.com on 15 Jan 2014 at 8:56

Attachments:

GoogleCodeExporter commented 8 years ago
Take a look at :h g:vimwiki_list_ignore_newline
BTW, bugs should go to the Github page: https://github.com/vimwiki/vimwiki

Original comment by istjanic...@gmail.com on 28 Feb 2014 at 12:39

GoogleCodeExporter commented 8 years ago
thanks for the reply. g:vimwiki_list_ignore_newline = 0 solves my problem.And 
sorry for asking in the wrong place.

Original comment by huangy...@gmail.com on 1 Mar 2014 at 11:19