statiqdev / Statiq.Docs

A static documentation site generator.
https://statiq.dev/docs
Other
53 stars 8 forks source link

Operators don't get fully documented #22

Open SilentSin opened 5 years ago

SilentSin commented 5 years ago

Implicit operators (possibly other operators too) like the one below are listed in the API documentation, but they don't get their own page like other functions and their summary column is always empty.

/// <summary>Best comment ever.</summary>
public static implicit operator MyClass(string path)
{
    return new MyClass(path);
}
SilentSin commented 5 years ago

I just checked that this applies to all operators, not just implicit ones.