public void unDecorateComment(T)(string comment, auto ref T outputRange) 
if(isOutputRange!(T, string))
Removes "decoration" such as leading whitespace, leading + and * characters, and places the result into the given output range

Contracts

in
{
    assert (comment.length >= 3);
}