rails / sdoc

Standalone sdoc generator
http://api.rubyonrails.org/
Other
823 stars 131 forks source link

Methods not showing up in search results #330

Closed p8 closed 8 months ago

p8 commented 9 months ago

When I search for render I'm not seeing any render methods in the results:

image
jonathanhefner commented 9 months ago

Modules are ranked above methods in search results. This is because there are "escape hatches" to search for methods, but no equivalent escape hatch for modules. Try searching for "#render", ".render", or "render(":

results

I've submitted #331 to add a tip about this.

jonathanhefner commented 8 months ago

After some more thought, I think I have found a good compromise: #343.