When using the TypeDoc config below it will result in invalid internal links.
For example, if this generated file exists: Namespace.dpi.md and you have a link to an item called logicalposition within itself, it will generate this link: namespaces/dpi.md#logicalposition.
I would expect this link to instead be namespace.dpi.md#logicalposition (notice the removal of the trailing s in namespaces and using a . instead of a /.
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
When using the TypeDoc config below it will result in invalid internal links.
For example, if this generated file exists:
Namespace.dpi.md
and you have a link to an item calledlogicalposition
within itself, it will generate this link:namespaces/dpi.md#logicalposition
.I would expect this link to instead be
namespace.dpi.md#logicalposition
(notice the removal of the trailings
innamespaces
and using a.
instead of a/
.TypeDoc configuration
Expected behavior
See above. It seems that the option for
flattenOutputFiles
is not being taken into account.