<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/rdoc/markup/to_html.rb, branch v3_4_9</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Sync RDoc 6.14.0</title>
<updated>2025-05-22T22:04:47+00:00</updated>
<author>
<name>Stan Lo</name>
<email>stan.lo@shopify.com</email>
</author>
<published>2025-05-22T21:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=03eb777c69d64aa4941891a784c1fd67b44ea42c'/>
<id>03eb777c69d64aa4941891a784c1fd67b44ea42c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Use distinct styles for note lists and label lists</title>
<updated>2024-12-08T10:43:47+00:00</updated>
<author>
<name>nicholas a. evans</name>
<email>nick@rubinick.dev</email>
</author>
<published>2024-12-08T10:43:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=dd43af3be7eddb832c77ef367456fa023fed7d7a'/>
<id>dd43af3be7eddb832c77ef367456fa023fed7d7a</id>
<content type='text'>
(https://github.com/ruby/rdoc/pull/1209)

* Use the original `label` description list style

As a default for all description lists, the original "label" style is
more readable.

This is slightly different from the original `label` dl though:
* slightly increased left margin for `dd` (to 1em)
* removed right margin on `dd`
* removed `dt` bottom margin and `dd` top margin, to reduce the gap
  between the term and its description (to only the standard line-height
  gap).

* Add closing tags for description list terms

Without the closing tags, the dt elements contain whitespace after the
text.  This normally isn't a big deal, but does mess some things up,
e.g: using `::after` with `content: ", "` in stylesheets.

* Restore float:left style for note lists

Unlike the original note list styles, this version sets the line-height
for all `dt` elements to be the same as the `p` elements contained
inside the `dd`, so that the second line has the same indentation as all
subsequent lines.

* Add commas between note list terms

https://github.com/ruby/rdoc/commit/9e69ea6d75
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(https://github.com/ruby/rdoc/pull/1209)

* Use the original `label` description list style

As a default for all description lists, the original "label" style is
more readable.

This is slightly different from the original `label` dl though:
* slightly increased left margin for `dd` (to 1em)
* removed right margin on `dd`
* removed `dt` bottom margin and `dd` top margin, to reduce the gap
  between the term and its description (to only the standard line-height
  gap).

* Add closing tags for description list terms

Without the closing tags, the dt elements contain whitespace after the
text.  This normally isn't a big deal, but does mess some things up,
e.g: using `::after` with `content: ", "` in stylesheets.

* Restore float:left style for note lists

Unlike the original note list styles, this version sets the line-height
for all `dt` elements to be the same as the `p` elements contained
inside the `dd`, so that the second line has the same indentation as all
subsequent lines.

* Add commas between note list terms

https://github.com/ruby/rdoc/commit/9e69ea6d75
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] [DOC] nodoc for probably internal methods</title>
<updated>2023-12-15T15:26:39+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2023-12-15T10:36:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=20f4f007644b841c71402a5ae64ee5373dc7b91a'/>
<id>20f4f007644b841c71402a5ae64ee5373dc7b91a</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/f7dd147a8c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/f7dd147a8c
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Place a space between certain character class letters only</title>
<updated>2023-11-27T15:58:31+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2023-11-27T11:15:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=196c4aeb766a66b3557ddab61086db58c7a08226'/>
<id>196c4aeb766a66b3557ddab61086db58c7a08226</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/1f568e049d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/1f568e049d
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Use a more portable way to check if code is parseable</title>
<updated>2023-07-29T15:31:48+00:00</updated>
<author>
<name>Benoit Daloze</name>
<email>eregontp@gmail.com</email>
</author>
<published>2023-07-26T12:08:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=df5330b04eda80d00a1f406573ae6b9e5f71c533'/>
<id>df5330b04eda80d00a1f406573ae6b9e5f71c533</id>
<content type='text'>
* The same as used in irb: https://github.com/ruby/irb/pull/134/files
* This works on all Ruby implementations, unlike `return` in BEGIN which
  can be quite difficult to support.

https://github.com/ruby/rdoc/commit/d19f7c66fe
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* The same as used in irb: https://github.com/ruby/irb/pull/134/files
* This works on all Ruby implementations, unlike `return` in BEGIN which
  can be quite difficult to support.

https://github.com/ruby/rdoc/commit/d19f7c66fe
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Auto-correct trailing new lines</title>
<updated>2023-06-03T01:42:29+00:00</updated>
<author>
<name>Vinicius Stock</name>
<email>stock@hey.com</email>
</author>
<published>2023-06-02T22:56:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a4d92475f69f0ca3dba0f497253e600c7f90a0ad'/>
<id>a4d92475f69f0ca3dba0f497253e600c7f90a0ad</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/4b68c0728a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/4b68c0728a
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Escape HYPERLINKs</title>
<updated>2022-10-07T03:09:22+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-04-13T07:14:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=586e18b94645b2d3181720d311fcd72b4bb2ca88'/>
<id>586e18b94645b2d3181720d311fcd72b4bb2ca88</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/ac35485be6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/ac35485be6
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Escape RDOCLINKs</title>
<updated>2022-10-07T03:09:21+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-04-13T07:14:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9e3ab9da7fe6d4910a48d808e582e825d7b7467d'/>
<id>9e3ab9da7fe6d4910a48d808e582e825d7b7467d</id>
<content type='text'>
https://hackerone.com/reports/1187156

https://github.com/ruby/rdoc/commit/7cecf1efae
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://hackerone.com/reports/1187156

https://github.com/ruby/rdoc/commit/7cecf1efae
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Escape TIDYLINKs</title>
<updated>2022-10-07T03:09:20+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-03-28T09:36:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=deaa65660822e070294d6c2a7dfec286cbbdff56'/>
<id>deaa65660822e070294d6c2a7dfec286cbbdff56</id>
<content type='text'>
https://hackerone.com/reports/1187156

https://github.com/ruby/rdoc/commit/1ad2dd3ca2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://hackerone.com/reports/1187156

https://github.com/ruby/rdoc/commit/1ad2dd3ca2
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Allow RDoc markups in table cells</title>
<updated>2022-10-06T09:24:44+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-10-06T03:05:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=75a53f6be0bdd02fcf70a352892e085a02995cf9'/>
<id>75a53f6be0bdd02fcf70a352892e085a02995cf9</id>
<content type='text'>
https://github.com/ruby/rdoc/commit/b16d3f1727
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/rdoc/commit/b16d3f1727
</pre>
</div>
</content>
</entry>
</feed>
