When separating sections of code with a blank line to form "paragraphs for readability, they all disappear after being processed by this plugin. e.g. The following jsonata ```jsonata ( $fn1 := function($v) { 'asdf: ' & $v }; $fn2 := function($v) { $v & $v }; $fn1("something"); ) ``` gets formatted to ```jsonata ( $fn1 := function($v) { 'asdf: ' & $v }; $fn2 := function($v) { $v & $v }; $fn1("something"); ) ```