The goal of this WantedFeatures is to have a look better comment block in source code. I use this feature in PHPDoc. This is not a very important feature.
See a sample:
{**
* This unit do something. Yes! realy!!
*}with this comment, the decription will be:
* This unit do something. Yes! realy!! *
With the feature, the '*' at begining and end of lines will be skiped and the result will be
This unit do something. Yes! realy!!
Another sample
{*********************************************
* This unit do something. Yes! realy!! *
**********************************************}Here, the result will be
This unit do something. Yes! realy!!