RDoc Markup Reference
This document is the comprehensive reference for RDoc’s rdoc markup format. It covers all markup syntax, directives, and formatting options available.
For Ruby-specific features that require actual code (like cross-reference targets and directives that only work in Ruby comments), see RDoc::Example.
Anchor Links
RDoc generates GitHub-style anchors for headings. The anchor is the heading text converted to lowercase with spaces replaced by hyphens and special characters removed.
You can link to headings using Markdown-style syntax:
About the Examples
-
Examples in this reference show RDoc markup syntax.
-
An example that shows rendered HTML output displays that output in a blockquote:
Some rendered output
Markup Sources
The sources of markup documentation vary according to the file type:
-
.rb(Ruby code file):-
Markup may be found in Ruby comments: A comment that immediately precedes the definition of a class, module, method, alias, constant, or attribute becomes the documentation for that defined object.
-
A markup directive may be found in:
-
A trailing comment (on the same line as code); see
:nodoc:,:doc:, and:notnew:. -
A single-line comment; see other Directives below.
-
-
Documentation may be derived from the Ruby code itself; see Derived Documentation below.
-
-
.c(C code file): markup is parsed from C comments. A comment that immediately precedes a function that implements a Ruby method, or otherwise immediately precedes the definition of a Ruby object, becomes the documentation for that object. -
.rdoc(markup file): markup is parsed from the entire file. The text is not associated with any code object, but may (depending on how the documentation is built) become a separate page.
Note that all of the above applies to RDoc markup-formatted documentation:
-
A C- or Ruby-coded file may contain
markdown-formatted documentation, though that format must be declared (because the default ismarkup). -
A markdown (
.md) file contains onlymarkdown-formatted documentation.
Blocks
It’s convenient to think of an RDoc document as a sequence of blocks of various types:
-
Paragraph: an ordinary paragraph.
-
Verbatim text block: a block of text to be rendered literally.
-
Code block: a verbatim text block containing Ruby code, to be rendered with code highlighting.
-
Block quote: a longish quoted passage, to be rendered with indentation instead of quote marks.
-
List: items for a bullet list, numbered list, lettered list, or labeled list.
-
Heading: a heading.
-
Horizontal rule: a line across the rendered page.
-
Directive: various special directions for the rendering.
-
Text Markup: text to be rendered in a special way.
About the blocks:
-
Except for a paragraph, a block is distinguished by its indentation, or by unusual initial or embedded characters.
-
Any block may appear independently (that is, not nested in another block); some blocks may be nested, as detailed below.
-
In a multi-line block, RDoc looks for the block’s natural left margin, which becomes the base margin for the block and is the initial current margin for the block.
Paragraphs
A paragraph consists of one or more non-empty lines of ordinary text, each beginning at the current margin.
Note: Here, ordinary text means text that is not identified by indentation, or by unusual initial or embedded characters. See below.
Paragraphs are separated by one or more empty lines.
Example input:
RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the rdoc and ri tools for generating and displaying documentation from the command-line. You'll love it.
Rendered HTML:
RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the rdoc and ri tools for generating and displaying documentation from the command-line.
You’ll love it.
A paragraph may contain nested blocks, including:
Verbatim Text Blocks
Text indented farther than the current margin becomes a verbatim text block (or a code block, described next). In the rendered HTML, such text:
-
Is indented.
-
Has a contrasting background color.
The verbatim text block ends at the first line beginning at the current margin.
Example input:
This is not verbatim text.
This is verbatim text.
Whitespace is honored. # See?
Whitespace is honored. # See?
This is still the same verbatim text block.
This is not verbatim text.
Rendered HTML:
This is not verbatim text.
This is verbatim text. Whitespace is honored. # See? Whitespace is honored. # See? This is still the same verbatim text block.This is not verbatim text.
A verbatim text block may not contain nested blocks of any kind – it’s verbatim.
Code Blocks
A special case of verbatim text is the code block, which is merely verbatim text that RDoc recognizes as Ruby code:
In the rendered HTML, the code block:
-
Is indented.
-
Has a contrasting background color.
-
Has syntax highlighting.
Example input:
Consider this method: def foo(name = '', value = 0) @name = name # Whitespace is still honored. @value = value end
Rendered HTML:
Consider this method:
def foo(name = '', value = 0) @name = name # Whitespace is still honored. @value = value end
Pro tip: If your indented Ruby code does not get highlighted, it may contain a syntax error.
A code block may not contain nested blocks of any kind – it’s verbatim.
Block Quotes
You can use the characters >>> (unindented), followed by indented text, to treat the text as a block quote:
Example input:
Here's a block quote: >>> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer commodo quam iaculis massa posuere, dictum fringilla justo pulvinar. Quisque turpis erat, pharetra eu dui at, sollicitudin accumsan nulla. Aenean congue ligula eu ligula molestie, eu pellentesque purus faucibus. In id leo non ligula condimentum lobortis. Duis vestibulum, diam in pellentesque aliquet, mi tellus placerat sapien, id euismod purus magna ut tortor.
Rendered HTML:
Here’s a block quote:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer commodo quam iaculis massa posuere, dictum fringilla justo pulvinar. Quisque turpis erat, pharetra eu dui at, sollicitudin accumsan nulla.
Aenean congue ligula eu ligula molestie, eu pellentesque purus faucibus. In id leo non ligula condimentum lobortis. Duis vestibulum, diam in pellentesque aliquet, mi tellus placerat sapien, id euismod purus magna ut tortor.
Note that, unlike verbatim text, single newlines are not honored, but that a double newline begins a new paragraph in the block quote.
A block quote may contain nested blocks, including:
-
Other block quotes.
Lists
Each type of list item is marked by a special beginning:
-
Bullet list item: Begins with a hyphen or asterisk.
-
Numbered list item: Begins with digits and a period.
-
Lettered list item: Begins with an alphabetic character and a period.
-
Labeled list item: Begins with one of:
-
Square-bracketed text.
-
A word followed by two colons.
-
A list begins with a list item and continues, even across blank lines, as long as list items of the same type are found at the same indentation level.
A new list resets the current margin inward. Additional lines of text aligned at that margin are part of the continuing list item.
A list item may be continued on additional lines that are aligned with the first line. See examples below.
A list item may contain nested blocks, including:
-
Other lists of any type.
Bullet Lists
A bullet list item begins with a hyphen or asterisk.
Example input:
- An item. - Another. - An item spanning multiple lines. * Yet another. - Last one.
Rendered HTML:
An item.
Another.
An item spanning multiple lines.
Yet another.
Last one.
Numbered Lists
A numbered list item begins with digits and a period.
The items are automatically re-numbered.
Example input:
100. An item. 10. Another. 1. An item spanning multiple lines. 1. Yet another. 1000. Last one.
Rendered HTML:
An item.
Another.
An item spanning multiple lines.
Yet another.
Last one.
Lettered Lists
A lettered list item begins with letters and a period.
The items are automatically “re-lettered.”
Example input:
z. An item. y. Another. x. An item spanning multiple lines. x. Yet another. a. Last one.
Rendered HTML:
An item.
Another.
An item spanning multiple lines.
Yet another.
Last one.
Labeled Lists
A labeled list item begins with one of:
-
Square-bracketed text: the label and text are on two lines.
-
A word followed by two colons: the label and text are on the same line.
Example input:
[foo] An item.
bat:: Another.
[bag] An item spanning
multiple lines.
[bar baz] Yet another.
bam:: Last one.
Rendered HTML:
- foo
An item.
- bat
Another.
- bag
An item spanning multiple lines.
- bar baz
Yet another.
- bam
Last one.
Headings
A heading begins with up to six equal-signs, followed by heading text. Whitespace between those and the heading text is optional.
You should not use headings beyond level 3, as it becomes difficult for the reader to track the multiple layers of nesting.
Examples:
= Section 1 == Section 1.1 === Section 1.1.1 === Section 1.1.2 == Section 1.2 = Section 2 ============Still a Heading (Level 6) \== Not a Heading
A heading may contain only one type of nested block:
Heading Examples
Heading level 1
Above is a level one heading.
Heading level 2
Above is a level two heading.
Heading level 3
Above is a level three heading.
Heading level 4
Above is a level four heading.
Heading level 5
Above is a level five heading.
Heading level 6
Above is a level six heading.
Horizontal Rules
A horizontal rule consists of a line with three or more hyphens and nothing more.
Example input:
--- --- Not a horizontal rule. -- Also not a horizontal rule. ---
Rendered HTML:
— Not a horizontal rule.
– Also not a horizontal rule.
Directives
Directives for Allowing or Suppressing Documentation
:stopdoc:
-
Appears on a line by itself.
-
Specifies that RDoc should ignore markup until next
:startdoc:directive or end-of-file.
:startdoc:
-
Appears on a line by itself.
-
Specifies that RDoc should resume parsing markup.
:enddoc:
-
Appears on a line by itself.
-
Specifies that RDoc should ignore markup to end-of-file regardless of other directives.
:nodoc:
-
Appended to a line of code that defines a class, module, method, alias, constant, or attribute; takes optional argument
all(:nodoc: all). -
Specifies that the defined object should not be documented.
For a method definition in C code, the directive must be in the comment line immediately preceding the definition:
/* :nodoc: */
static VALUE
some_method(VALUE self)
{
return self;
}
Note that this directive has no effect at all when placed at the method declaration:
/* :nodoc: */ rb_define_method(cMyClass, "do_something", something_func, 0);
The above comment is just a comment and has nothing to do with RDoc. Therefore, do_something method will be reported as “undocumented” unless that method or function is documented elsewhere.
For a constant definition in C code, this directive cannot work because there is no “implementation” place for a constant.
With argument all (:nodoc: all), specifies that the class or module should not be documented. By default, however, a nested class or module will be documented.
:doc:
-
Appended to a line of code that defines a class, module, method, alias, constant, or attribute.
-
Specifies the defined object should be documented, even if it otherwise would not be documented.
:notnew:
-
Appended to a line of code that defines instance method
initialize. -
Specifies that singleton method
newshould not be documented. By default, Ruby fakes a corresponding singleton methodnew, which RDoc includes in the documentation. Note that instance methodinitializeis private, and so by default is not documented.
Aliased as :not_new: and :not-new:.
For Ruby code, but not for other RDoc sources, there is a shorthand for :stopdoc: and :startdoc::
# Documented. #-- # Not documented. #++ # Documented.
For C code, any of directives :startdoc:, :stopdoc:, and :enddoc: may appear in a stand-alone comment:
/* :startdoc: */ /* :stopdoc: */ /* :enddoc: */
Directive for Specifying RDoc Source Format
:markup:
-
Appears on a line by itself; takes argument
format(:markup: _format_). -
Specifies the format for the RDoc input; argument
formatis one of:rdoc(the default),markdown,rd,tomdoc.
Directives for Method Documentation
:call-seq:
-
Appears on a line by itself.
-
Specifies the calling sequence to be reported in the HTML, overriding the actual calling sequence in the code. See
RDoc::Example#call_seq_examplefor a demonstration.
Note that RDoc can build the calling sequence for a Ruby-coded method, but not for other languages. You may want to override that by explicitly giving a :call-seq: directive if you want to include:
-
A return type, which is not automatically inferred.
-
Multiple calling sequences.
For C code, the directive may appear in a stand-alone comment.
:args:
-
Appears on a line by itself; takes argument
arg_names(:args: _arg_names_). -
Specifies the arguments to be reported in the HTML, overriding the actual arguments in the code. See
RDoc::Example#args_examplefor a demonstration.
Aliased as :arg:.
:yields:
-
Appears on a line by itself; takes argument
arg_names(:yields: _arg_names_). -
Specifies the yield arguments to be reported in the HTML, overriding the actual yield in the code. See
RDoc::Example#yields_examplefor a demonstration.
Aliased as :yield:.
Directives for Organizing Documentation
By default, RDoc groups:
-
Singleton methods together in alphabetical order.
-
Instance methods and their aliases together in alphabetical order.
-
Attributes and their aliases together in alphabetical order.
You can use directives to modify those behaviors.
:section:
-
Appears on a line by itself; takes argument
section_title(:section: _section_title_). -
Specifies that following methods are to be grouped into the section with the given
section_title, or into the default section if no title is given. The directive remains in effect until another such directive is given, but may be temporarily overridden by directive:category:. See below.
The comment block containing this directive:
-
Must be separated by a blank line from the documentation for the next item.
-
May have one or more lines preceding the directive. These will be removed, along with any trailing lines that match them. Such lines may be visually helpful.
-
Lines of text that are not so removed become the descriptive text for the section.
Example:
# ---------------------------------------- # :section: My Section # This is the section that I wrote. # See it glisten in the noon-day sun. # ---------------------------------------- ## # Comment for some_method def some_method # ... end
You can use directive :category: to temporarily override the current section.
:category:
-
Appears on a line by itself; takes argument
section_title(:category: _section_title_). -
Specifies that just one following method is to be included in the given section, or in the default section if no title is given. Subsequent methods are to be grouped into the current section.
Directive for Including a File
:include:
-
Appears on a line by itself; takes argument
filepath(:include: _filepath_). -
Specifies that the contents of the given file are to be included at this point.
The file content is shifted to have the same indentation as the colon at the start of the directive.
The file is searched for in the directory containing the current file, and then in each of the directories given with the --include command-line option.
For C code, the directive may appear in a stand-alone comment.
Text Markup
Text markup is metatext that affects HTML rendering:
-
Typeface: italic, bold, monofont, strikethrough.
-
Character conversions: copyright, trademark, certain punctuation.
-
Escapes: marking text as “not markup.”
Typeface Markup
Typeface markup can specify that text is to be rendered as italic, bold, monofont, or strikethrough.
Typeface markup may contain only one type of nested block:
-
More typeface markup: italic, bold, monofont, strikethrough.
Italic
Text may be marked as italic via HTML tag <i> or <em>.
Example input:
<i>Italicized words</i> in a paragraph. <i>Italicized passage containing *bold* and +monofont+.</i>
Rendered HTML:
Italicized words in a paragraph.
Italicized passage containing bold and
monofont.
A single word may be italicized via a shorthand: prefixed and suffixed underscores.
Example input:
_Italic_ in a paragraph.
Rendered HTML:
Italic in a paragraph.
Bold
Text may be marked as bold via HTML tag <b>.
Example input:
<b>Bold words</b> in a paragraph. <b>Bold passage containing _italics_ and +monofont+.</b>
Rendered HTML:
Bold words in a paragraph.
Bold passage containing italics and
monofont.
A single word may be made bold via a shorthand: prefixed and suffixed asterisks.
Example input:
*Bold* in a paragraph.
Rendered HTML:
Bold in a paragraph.
Monofont
Text may be marked as monofont – sometimes called ‘typewriter font’ – via HTML tag <tt> or <code>.
Example input:
<tt>Monofont words</tt> in a paragraph. <tt>Monofont passage containing _italics_ and *bold*.</tt>
Rendered HTML:
Monofont wordsin a paragraph.
Monofont passage containing _italics_ and *bold*.
A single word may be made monofont by a shorthand: prefixed and suffixed plus-signs.
Example input:
+Monofont+ in a paragraph.
Rendered HTML:
Monofontin a paragraph.
Strikethrough
Text may be marked as strikethrough via HTML tag <del> or <s>.
Example input:
<del>Strikethrough words</del> in a paragraph. <del>Deleted passage containing _italics_ and *bold*.</del>
Rendered HTML:
Strikethrough wordsin a paragraph.
Deleted passage containing italics and bold.
Character Conversions
Certain combinations of characters may be converted to special characters; whether the conversion occurs depends on whether the special character is available in the current encoding.
-
(c)converts to © (copyright character); must be lowercase. -
(r)converts to ® (registered trademark character); must be lowercase. -
'foo'converts to ‘foo’ (smart single-quotes). -
"foo"converts to “foo” (smart double-quotes). -
foo ... barconverts to foo … bar (1-character ellipsis). -
foo -- barconverts to foo – bar (1-character en-dash). -
foo --- barconverts to foo — bar (1-character em-dash).
Links
Certain strings in RDoc text are converted to links. Any such link may be suppressed by prefixing a backslash. This section shows how to link to various targets.
Class Links
-
On-page:
RDoc::Example::ExampleClasslinks toRDoc::Example::ExampleClass. -
Off-page:
RDoc::Aliaslinks toRDoc::Alias.
Note: When marking up code (such as class, module, constant, and method) as “+code+” (for interoperability with other Markdown parsers mainly), any word that refers to a known code object, and is marked up entirely and separately as “monofont”, is also converted to a link.
-
+RDoc+links toRDoc.
Module Links
-
On-page:
RDoc::Example::ExampleModulelinks toRDoc::Example::ExampleModule. -
Off-page:
RDoclinks to RDoc.
Constant Links
-
On-page:
RDoc::Example::EXAMPLE_CONSTANTlinks to RDoc::Example::EXAMPLE_CONSTANT. -
Off-page:
RDoc::Text::MARKUP_FORMATlinks to RDoc::Text::MARKUP_FORMAT.
Singleton Method Links
-
On-page:
RDoc::Example::singleton_method_examplelinks toRDoc::Example::singleton_method_example. -
Off-page:
RDoc::TokenStream::to_htmllinks toRDoc::TokenStream::to_html.
Note: Occasionally RDoc is not linked to a method whose name has only special characters. Check whether the links you were expecting are actually there. If not, you’ll need to put in an explicit link; see below.
Pro tip: The link to any method is available in the alphabetical table of contents at the top left of the page for the class or module.
Instance Method Links
-
On-page: instance_method_example links to instance_method_example (when in the same class context).
-
Off-page:
RDoc::Alias#html_namelinks toRDoc::Alias#html_name.
See the Note and Pro Tip immediately above.
Attribute Links
-
Off-page:
RDoc::Alias#namelinks toRDoc::Alias#name.
Alias Links
-
Off-page:
RDoc::Alias#new_namelinks toRDoc::Alias#new_name.
Protocol Links
- Protocol
http -
Linked:
http://yahoo.comlinks to yahoo.com.
-
- Protocol
https -
Linked:
https://github.comlinks to github.com.
-
- Protocol
ftp -
Linked:
ftp://nosuch.sitelinks to nosuch.site.
-
- Protocol
mailto -
Linked:
mailto:foo@bar.comlinks to foo@bar.com.
-
- Protocol
irc -
Link:
irc://irc.freenode.net/rubylinks to irc.freenode.net/ruby.
-
Image Filename Extensions
Link: https://www.ruby-lang.org/images/header-ruby-logo@2x.png is converted to an in-line HTML img tag, which displays the image in the HTML:

Also works for bmp, gif, jpeg, and jpg files.
Note: Works only for a fully qualified URL.
Heading Links
Link: LICENSE at RDoc::RD links to LICENSE at RDoc::RDoc::RD.
Note that spaces in the actual heading are represented by + characters in the linkable text.
-
Link: Saved Options at
RDoc::Optionslinks to Saved Options atRDoc::Options.
Punctuation and other special characters must be escaped like CGI.escape.
Pro tip: The link to any heading is available in the alphabetical table of contents at the top left of the page for the class or module.
Section Links
See Directives for Organizing Documentation above.
-
Link: Visitor at
RDoc::Markup::ToHtmllinks to Visitor atRDoc::Markup::ToHtml.
If a section and a heading share the same name, the link target is the section.
Single-Word Text Link
Use square brackets to create single-word text link:
-
GitHub[https://github.com]links to GitHub.
Multi-Word Text Link
Use square brackets and curly braces to create a multi-word text link.
-
{GitHub home page}[https://github.com]links to GitHub home page.
rdoc-ref Scheme
A link with the rdoc-ref: scheme links to the referenced item, if that item exists. The referenced item may be a class, module, method, file, etc.
-
Class:
Alias[rdoc-ref:RDoc::Alias]generates Alias. -
Module:
RDoc[rdoc-ref:RDoc]generatesRDoc. -
Method:
foo[rdoc-ref:RDoc::Example#instance_method_example]generates foo. -
Constant:
bar[rdoc-ref:RDoc::Example::EXAMPLE_CONSTANT]generates RDoc::Example::EXAMPLE_CONSTANT. -
File:
README[rdoc-ref:README.md]generates README.
If the referenced item does not exist, no link is generated and entire rdoc-ref: square-bracketed clause is removed from the resulting text.
-
Nosuch[rdoc-ref:RDoc::Nosuch]generates Nosuch.
rdoc-label Scheme
Simple
You can specify a link target using this form, where the second part cites the id of an HTML element.
This link refers to the constant EXAMPLE_CONSTANT on this page:
-
{EXAMPLE_CONSTANT}[rdoc-label:EXAMPLE_CONSTANT]
With Return
You can specify both a link target and a local label that can be used as the target for a return link. These two links refer to each other:
-
{go to addressee}[rdoc-label:addressee:sender] -
{return to sender}[rdoc-label:sender:addressee]
Thus:
Some text.
link: Scheme
-
link:README_md.htmllinks to README_md.html.
rdoc-image Scheme
Use the rdoc-image scheme to display an image that is also a link:
{rdoc-image:path/to/image}[link_target]
-
Link:
{rdoc-image:https://www.ruby-lang.org/images/header-ruby-logo@2x.png}[https://www.ruby-lang.org]displays imagehttps://www.ruby-lang.org/images/header-ruby-logo@2x.pngas a link tohttps://www.ruby-lang.org.
A relative path as the target also works:
-
Link:
{rdoc-image:https://www.ruby-lang.org/images/header-ruby-logo@2x.png}[./Alias.html]links to./Alias.html
Escaping Text
Text that would otherwise be interpreted as markup can be “escaped,” so that it is not interpreted as markup; the escape character is the backslash ('\').
In a verbatim text block or a code block, the escape character is always preserved:
Example input:
This is not verbatim text.
This is verbatim text, with an escape character \.
This is not a code block.
def foo
'String with an escape character.'
end
Rendered HTML:
This is not verbatim text.
This is verbatim text, with an escape character \.This is not a code block.
def foo 'This is a code block with an escape character \.' end
In typeface markup (italic, bold, or monofont), an escape character is preserved unless it is immediately followed by nested typeface markup.
Example input:
This list is about escapes; it contains: - <tt>Monofont text with unescaped nested _italic_</tt>. - <tt>Monofont text with escaped nested \_italic_</tt>. - <tt>Monofont text with an escape character \</tt>.
Rendered HTML:
This list is about escapes; it contains:
Monofont text with unescaped nested _italic_.
Monofont text with escaped nested _italic_.
Monofont text with an escape character \.
In other text-bearing blocks (paragraphs, block quotes, list items, headings):
-
A single escape character immediately followed by markup escapes the markup.
-
A single escape character followed by whitespace is preserved.
-
A single escape character anywhere else is ignored.
-
A double escape character is rendered as a single backslash.
Example input:
This list is about escapes; it contains: - An unescaped class name, RDoc, that will become a link. - An escaped class name, \RDoc, that will not become a link. - An escape character followed by whitespace \ . - An escape character \that is ignored. - A double escape character \\ that is rendered as a single backslash.
Rendered HTML:
This list is about escapes; it contains:
-
An unescaped class name, RDoc, that will become a link.
-
An escaped class name, RDoc, that will not become a link.
-
An escape character followed by whitespace \ .
-
An escape character that is ignored.
-
A double escape character \ that is rendered as a single backslash.
-
Derived Documentation
RDoc can automatically derive documentation from Ruby code. For demonstrations, see RDoc::Example.
Class
By default, RDoc documents:
-
Class name.
-
Parent class.
-
Included modules.
-
Singleton methods.
-
Instance methods.
-
Aliases.
-
Constants.
-
Attributes.
Module
By default, RDoc documents:
-
Module name.
-
Included modules.
-
Singleton methods.
-
Instance methods.
-
Aliases.
-
Constants.
-
Attributes.
Method
By default, RDoc documents:
-
Method name.
-
Arguments.
-
Yielded values.
See RDoc::Example#derived_docs_example.
Alias
By default, RDoc documents:
-
Alias name.
-
Aliased name.
See RDoc::Example#aliased_method.
Constant
By default, RDoc documents:
-
Constant name.
See RDoc::Example::EXAMPLE_CONSTANT.
Attribute
By default, RDoc documents:
-
Attribute name.
-
Attribute type (
[R],[W], or[RW])