rdoc
rdoc copied to clipboard
RDoc produces HTML and online documentation for Ruby projects.
There absolutely, positively, must be a way to get bold or italic text with unchanged (i.e., not red) font color. In the long history of typography, bolding or italicizing text...
In the markup reference, I've included text markup as a type of block (along with paragraph, list, heading, etc.). But is it really useful to think of text markup in...
In the markup reference, I've written that a paragraph may contain other blocks. Is this true? Would it be better to say that a paragraph may contain only embedded text...
First of all, I should add that this is not really a bug, more of an uncomfortable compatibility problem, but README encourages me to report anything I have a problem...
I noticed that Markup elements are currently not standardized in any way - even though the code does make some assumptions. For example, there are visitors that depend on all...
It feels a bit awkward with the scroll bar on the left 😅 E.g. [Process#kill](https://docs.ruby-lang.org/en/master/Process.html#method-c-kill). This PR changes the visual highlight to only apply on the heading for anchored method...
To make it easier to switch to documentation of other versions, add a select box to select other versions. For example, the versions can be defined in `.rdoc_options`: ```yaml versions:...
## Background I implemented a plugin system for RDoc in https://github.com/ruby/rdoc/pull/1321 and YARD parsing plugin is implemented. In the discussion with @st0012, @kou and @vinistock we decided that we should...
Semi-related to #885 ... endless methods absolutely break class/namespace tracking: ```ruby class C def initialize = nil # :nodoc: end class D def initialize = nil # :nodoc: end class...