Markdown Email in Drafts to Spark?

I’m really starting to see the value in Drafts, which is long overdue.

I have an Action that converts my markdown draft into an email for Spark but I have one issue I cannot seem to fix - new line spaces do not push over

Example

Markdown:

dillon@domain.com <- fills in the to field

Hey there, 

Here is my email with a [link](mylink.com).

And here is another sentence just for fun...

Spark:

dillon@domain.com 

Hey there, 
Here is my email with a link.
And here is another sentence just for fun...

Consecutive new lines In Markdown get collapsed, not retained as multiple line breaks. Above you have consecutive new lines which is presumably why they are getting dropped.

Try adding in double spaces on your empty lines as per the Markdown specification to retain the lines.

1 Like

Awesome! Thank you so much :nerd_face: