rdoc icon indicating copy to clipboard operation
rdoc copied to clipboard

[Bug] Cannot link to constants in Markdown

Open UlyssesZh opened this issue 2 years ago • 1 comments

How to reproduce:

Create the following files:

# test.rb
module TestModule
  TEST_CONSTANT = 1108
  def test_instance_method
  end
end
<!-- test.md -->
TestModule
TestModule::TEST_CONSTANT
TestModule#test_instance_method

Run the command:

rdoc test.rb test.md

Then, use a browser to open doc/test_md.html.

Result: image

Expected: image

UlyssesZh avatar May 24 '23 02:05 UlyssesZh

I can reproduce this but it also happens when renaming .md to .rdoc. So it's likely a general auto-linking issue, not specific markup related.

st0012 avatar Dec 12 '24 13:12 st0012