mootari commented on issue #180:
URL: https://github.com/apache/arrow-js/issues/180#issuecomment-3020930100

   Hmm... If those docs never get regenerated then we might just get away with 
a simple search/replace in the generated HTML.
   
   Simple example:
   ```js
   `<aside class="tsd-sources"><ul><li>Defined in 
row/struct.ts:34</li></ul></aside>`.replace(
     /<li>Defined in (([^:]+):(\d+))<\/li>/g,
     `<li>Defined in <a 
href="https://github.com/apache/arrow/tree/apache-arrow-19.0.1/js/src/$2#L$3";>$1</li>`
   )
   ```
   Alternatively it could be applied as a patch after TypeDoc ran. All the 
script would need is the base path for the respective version.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to