Perltidy open BUGS

 You can help perltidy evolve into a better program.  If you think you
 have hit a bug or weird behavior, or have a suggested improvement,
 please send a note to perltidy at users.sourceforge.net.

Unwanted continuation indentation after a blank line (Erik Marcor Thaysen 2001-02-28):

For example,

        $a = {
            '18' => 'grave',
            '19' => 'acute',
            '20' => 'caron',
            '21' => 'breve',
            '22' => 'macr',
            '23' => 'ring',
        };

Gets formatted like this:

        $a = {
            '18' => 'grave',
            '19' => 'acute',
            '20' => 'caron',
              '21' => 'breve',
              '22' => 'macr',
              '23' => 'ring',
        };