When defining Perl variables using 'my' or 'our', it is common to assign a "default" value, like so:
our $eatMeat = "no"; # Indicates whether meat is eaten or not; "yes"=meat is eaten.
It would be very useful if ND could detect the default value and incorporate it into the generated documentation, like
my $eatMeat [Default = "no"]
Indicates whether meat is eaten or not; "yes"=meat is eaten.
Alternatively, the "[Default = ...]" string could be appended to the description, like
my $eatMeat
Indicates whether meat is eaten or not; "yes"=meat is eaten. [Default = "no"]
The "inline comment" description is another enhancement requested by someone else, #3303584 (https://sourceforge.net/tracker/?func=detail&aid=3303584&group_id=81796&atid=564052)