confluence-to-markdown-converter icon indicating copy to clipboard operation
confluence-to-markdown-converter copied to clipboard

Nested lists are not correctly converted

Open oberlies opened this issue 8 years ago • 0 comments

There is a newline missing before the indented star (  *) of the first item of the nested list.

Example from samples/Jsonix/Features.xml:

<li>Provides <strong>extensible type system</strong>
	
<ul>
		
<li>Supports most XML Schema simple types</li>
		
<li>Supports enumerations, list and union simple types</li>

This should be converted to

* Provides **extensible type system**
  * Supports most XML Schema simple types
  * Supports enumerations, list and union simple types

However, the current conversion result is

* Provides **extensible type system**  * Supports most XML Schema simple types
  * Supports enumerations, list and union simple types

This should be easy to fix. I'll provide a pull request for this.

oberlies avatar Mar 22 '17 16:03 oberlies