ggrossetie / asciidoc-googledocs-addon

Export Google Docs as AsciiDoc
MIT License
66 stars 11 forks source link

Remove spaces prepended to list items #18

Closed briandominick closed 6 years ago

briandominick commented 8 years ago

Both ordered and unordered lists insert a superfluous \s before at position one of the line. This is unnecessary, so let's remove it. (As per discussion in #17.)

Change output:

 * item
 * item

to

* item
* item

and

 . item
 . item

to

. item
. item