nginxbeautifier icon indicating copy to clipboard operation
nginxbeautifier copied to clipboard

Problem with single line return to multi line return

Open daniellockard opened this issue 5 years ago • 0 comments

    if ($arg_name = "blah") {return 301 /test/blah;}

turns into

 if ($arg_name = "blah") {
      return 301 /test/blah
 }

This is missing the ending semi-colon

daniellockard avatar Sep 04 '19 21:09 daniellockard