typedoc-plugin-markdown icon indicating copy to clipboard operation
typedoc-plugin-markdown copied to clipboard

class static functions are no longer marked as such since typedoc 0.25.3

Open panva opened this issue 1 year ago • 0 comments
trafficstars

I have a reproduction for missing Static labels on static class methods since [email protected].

I am opening an issue here because it is only exhibited in docs produced with the typedoc-plugin-markdown plugin, not when using the default html output without a plugin.

Reproduction follows

gh repo clone panva/typedoc-repro
cd typedoc-repro
npm clean-install
npm run docs
node check.mjs

# In html Foo.bar is marked as Static true
# In md Foo.bar is marked as Static true

npm i -D [email protected]
npm run docs
node check.mjs

# In html Foo.bar is marked as Static true
# In md Foo.bar is marked as Static false

panva avatar Dec 31 '23 13:12 panva