Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[next] Items in tables are not linkable #463

Closed
lorenzolewis opened this issue Aug 27, 2023 · 5 comments
Closed

[next] Items in tables are not linkable #463

lorenzolewis opened this issue Aug 27, 2023 · 5 comments
Labels
next Fix available in the '@next' release

Comments

@lorenzolewis
Copy link
Contributor

When referring to some items using {@ link } syntax it can result in broken links when using a table format and referencing an object in that table. This so far seems applicable to:

  • Enum members
  • Parameters
  • Properties
  • Type Parameters

And any others that might be given an option to render as a table. I've gotten around this previously by using a <a> tab with an id and name attribute: https://github.com/tauri-apps/tauri-docs/blob/3cf2a86b43e5263e3b30c337ee8a9fd508882e9e/patches/typedoc-plugin-markdown%404.0.0-next.17.patch#L9.

However, it seems that https://typedoc.org/api/classes/Models.DeclarationReflection.html#anchor is no longer returning a value for these in the last couple of versions. I'm happy to PR this if you agree and let me know how the IDs should be generated/read from.

@tgreyuk
Copy link
Member

tgreyuk commented Aug 29, 2023

Thanks for this. Have released another version typedoc-plugin-markdown@4.0.0-next.20 that iincludes:

  • Exposing the anchor prop (if property style is table then only when namedAchors is true)
  • When --namedAnchors is true html anchors will be included in the table row as per your example (only for properties at the moment but will look to do the same for params too).

@lorenzolewis
Copy link
Contributor Author

My only feedback on this right now is that --namedAnchors will also force anchors on headings where some doc build tools will already put this in place. This can unintentional impacts with the addition of another <a> tag (such as whitespace being added, non-unique IDs due to generation conflicts, etc.).

I wonder if this makes sense to only apply anchors to things (i.e. content in tables) that otherwise couldn't be easily applied with remark/rehype plugins (in the case of headings it would be https://github.com/rehypejs/rehype-slug)?

I've also see aria-hidden="true" tabindex="-1" being applied to the <a> tag to improve a11y (you can see this being the case in rehype-autolink-headings https://github.com/rehypejs/rehype-autolink-headings#use)

Otherwise this works perfectly for what I had in mind for properties. If the way you've currently implemented this for properties is how you'd like it done objects generated by --propertiesFormat, --enumMembersFormat, and --typeDeclarationFormat then I'd be happy to make a PR to implement those based on that.

@tgreyuk
Copy link
Member

tgreyuk commented Aug 29, 2023

Yeah good points. The initial requirement for namedAnchors is that Bitbucket server was not applying anchors at all #74. Not sure if this is still the case, but even so for this type of use case it might still be useful to continue to support anchors on headings without parsing with rehype. Perhaps namedAnchors should support context e.g ['headers','tables'] or split out into seperate options. Not too sure. I initially didn't want to support any HTML in the output and was going to drop this option completely, but I don't think there is another solution specifically for referencing symbols in tables.

If the way you've currently implemented this for properties is how you'd like it done objects generated by #463 (comment), #463 (comment), and #463 (comment) then I'd be happy to make a PR to implement those based on that.

Sure - if you are happy to work your way though the code :). The tests are disabled at the moment due to some breaking changes in 0.25 but will revisit them shortly.

@lorenzolewis
Copy link
Contributor Author

I might need to give that one a bit of a wait then. I remember last time the tests were really helpful to me when developing so if possible I'd rather have them for my own sanity 😅

I'm going to be out on vacation for a chunk of time but if this isn't in by then I'd be happy to contribute once I'm back.

@tgreyuk tgreyuk added the next Fix available in the '@next' release label Sep 15, 2023
@tgreyuk
Copy link
Member

tgreyuk commented May 3, 2024

typedoc-plugin-markdown@4.0.0

https://www.typedoc-plugin-markdown.org/docs/options#usehtmlanchors

@tgreyuk tgreyuk closed this as completed May 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
next Fix available in the '@next' release
Projects
None yet
Development

No branches or pull requests

2 participants