mangini / gdocs2md

Convert a Google Drive Document to the Markdown format, suitable for publishing.
Apache License 2.0
2.66k stars 621 forks source link

Help request: Preserve newlines #66

Closed gcantieni closed 4 years ago

gcantieni commented 4 years ago

Anyone know how I could modify the script to preserve single newlines vs double newlines? I have some song verses that I would like to use this script on which are of the form:

Verse1 line1
Verse1 line2

Chorus line 1
Chorus line2 

Verse2 line1
Verse2 line2

However, this script doesn't preserve this spacing and produces:

Verse1 line1

Verse1 line2

Chorus line 1

Chorus line2 

Verse2 line1

Verse2 line2
gcantieni commented 4 years ago

Okay got it, instead of returning when the result of processing the paragraph I add a newline to the output text. Additionally, I only add one newline to the output text in most cases.