Summary
An internal reference placeholder/token is leaking into the final generated markdown instead of being resolved or stripped.
Reproduction
- Run
rake vendor:setup:rails.
- Run
rake vendor:docs:rails.
- Open
vendor/docs/rails/ActionView/Helpers/FormBuilder.md.
- Inspect the first paragraph.
Example
vendor/docs/rails/ActionView/Helpers/FormBuilder.md:5
- Emits:
rdof-ref:ActionView::Helpers::FormHelper#form_with
Actual Result
The generated markdown contains a raw rdof-ref: token.
Expected Result
Internal reference placeholders should never appear in final output.
This should instead:
- resolve to the correct markdown link, or
- render as plain text if the target cannot be resolved.
Notes
I only found one visible instance in the current vendored output, but it looks like a specific unresolved reference path or typo in the reference handling pipeline.
Summary
An internal reference placeholder/token is leaking into the final generated markdown instead of being resolved or stripped.
Reproduction
rake vendor:setup:rails.rake vendor:docs:rails.vendor/docs/rails/ActionView/Helpers/FormBuilder.md.Example
vendor/docs/rails/ActionView/Helpers/FormBuilder.md:5rdof-ref:ActionView::Helpers::FormHelper#form_withActual Result
The generated markdown contains a raw
rdof-ref:token.Expected Result
Internal reference placeholders should never appear in final output.
This should instead:
Notes
I only found one visible instance in the current vendored output, but it looks like a specific unresolved reference path or typo in the reference handling pipeline.