<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/test/rdoc/test_rdoc_markup_to_html_crossref.rb, branch v3_2_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/rdoc] Support crossref of methods with multiple arguments</title>
<updated>2022-03-09T14:38:45+00:00</updated>
<author>
<name>Peter Zhu</name>
<email>peter@peterzhu.ca</email>
</author>
<published>2022-03-08T22:02:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f62f91313259539e8f0884a0ca99deb3ab8b87d3'/>
<id>f62f91313259539e8f0884a0ca99deb3ab8b87d3</id>
<content type='text'>
For example, consider the following markup:

  C1#m(a, b)

Before this patch, it generated this HTML:

  &lt;p&gt;&lt;a href=\"C1.html#method-i-m\"&gt;&lt;code&gt;C1#m&lt;/code&gt;&lt;/a&gt;(a, b)&lt;/p&gt;

Which places the method arguments outside of the link.

Now it generates this HTML:

  &lt;a href=\"C1.html#method-i-m\"&gt;&lt;code&gt;C1#m(a, b)&lt;/code&gt;&lt;/a&gt;

https://github.com/ruby/rdoc/commit/05a2b2222b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For example, consider the following markup:

  C1#m(a, b)

Before this patch, it generated this HTML:

  &lt;p&gt;&lt;a href=\"C1.html#method-i-m\"&gt;&lt;code&gt;C1#m&lt;/code&gt;&lt;/a&gt;(a, b)&lt;/p&gt;

Which places the method arguments outside of the link.

Now it generates this HTML:

  &lt;a href=\"C1.html#method-i-m\"&gt;&lt;code&gt;C1#m(a, b)&lt;/code&gt;&lt;/a&gt;

https://github.com/ruby/rdoc/commit/05a2b2222b
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Relative loading for easier development (https://github.com/ruby/rdoc/pull/821)</title>
<updated>2022-02-12T06:06:06+00:00</updated>
<author>
<name>Ulysse Buonomo</name>
<email>buonomo.ulysse@gmail.com</email>
</author>
<published>2022-02-10T02:31:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5348a34504a67597e3a3ed98a3020dfd762241ad'/>
<id>5348a34504a67597e3a3ed98a3020dfd762241ad</id>
<content type='text'>
This patch makes sure we only load relative code. Hence when coding or
testing rdoc, we'll be sure to always be using the correct code.

Discussion started at https://github.com/ruby/rdoc/pull/817.

Signed-off-by: Ulysse Buonomo &lt;buonomo.ulysse@gmail.com&gt;

https://github.com/ruby/rdoc/commit/aa41bd48eb

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch makes sure we only load relative code. Hence when coding or
testing rdoc, we'll be sure to always be using the correct code.

Discussion started at https://github.com/ruby/rdoc/pull/817.

Signed-off-by: Ulysse Buonomo &lt;buonomo.ulysse@gmail.com&gt;

https://github.com/ruby/rdoc/commit/aa41bd48eb

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Process crossref before tidylink</title>
<updated>2020-05-24T14:47:24+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2020-04-14T10:33:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f52a4690f8fbd495e8517178a0bf95c69ccea47c'/>
<id>f52a4690f8fbd495e8517178a0bf95c69ccea47c</id>
<content type='text'>
The crossref must be linked before tidylink because Klass.method[:sym] will be
processed as a tidylink first and will be broken.

https://github.com/ruby/rdoc/commit/0f47baf6d2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The crossref must be linked before tidylink because Klass.method[:sym] will be
processed as a tidylink first and will be broken.

https://github.com/ruby/rdoc/commit/0f47baf6d2
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/rdoc] Escape method names in HTML</title>
<updated>2020-05-24T14:47:24+00:00</updated>
<author>
<name>Nate Matykiewicz</name>
<email>natematykiewicz@gmail.com</email>
</author>
<published>2020-04-05T04:20:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c79f9ea606d072176533b22813653f9fd26940af'/>
<id>c79f9ea606d072176533b22813653f9fd26940af</id>
<content type='text'>
The following is invalid HTML:
&lt;a href="Array.html#method-i-3C-3C"&gt;&lt;code&gt;&lt;&lt;&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

Incorrect:
&lt;code&gt;&lt;&lt;&lt;/code&gt;

Correct:
&lt;code&gt;&amp;lt;&amp;lt;&lt;/code&gt;

Fixes #761

https://github.com/ruby/rdoc/commit/b120d087f6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The following is invalid HTML:
&lt;a href="Array.html#method-i-3C-3C"&gt;&lt;code&gt;&lt;&lt;&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

Incorrect:
&lt;code&gt;&lt;&lt;&lt;/code&gt;

Correct:
&lt;code&gt;&amp;lt;&amp;lt;&lt;/code&gt;

Fixes #761

https://github.com/ruby/rdoc/commit/b120d087f6
</pre>
</div>
</content>
</entry>
<entry>
<title>Treat linking to Markdown label correctly</title>
<updated>2019-08-15T21:02:45+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2019-08-08T07:35:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=64f9f512c5837207436203c0ca47523cca2ecc62'/>
<id>64f9f512c5837207436203c0ca47523cca2ecc62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix links to headings</title>
<updated>2019-07-14T08:46:16+00:00</updated>
<author>
<name>Maxime Lapointe</name>
<email>hunter_spawn@hotmail.com</email>
</author>
<published>2019-05-30T20:46:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b67b07bd5bd94433051b5e0a5db800f8b22361b4'/>
<id>b67b07bd5bd94433051b5e0a5db800f8b22361b4</id>
<content type='text'>
A previous change made the header's id be fully referenced (for the sidebar I believe) but this broke links to them.
This fixes the issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A previous change made the header's id be fully referenced (for the sidebar I believe) but this broke links to them.
This fixes the issue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark up code inside link text as &lt;code&gt;</title>
<updated>2018-10-29T06:23:21+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2018-10-29T06:23:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b9ca9169ba7c71a507fb3d4bcd6373c9c23edc7f'/>
<id>b9ca9169ba7c71a507fb3d4bcd6373c9c23edc7f</id>
<content type='text'>
Merged https://github.com/ruby/rdoc/pull/660

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Merged https://github.com/ruby/rdoc/pull/660

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge rdoc-6.1.0.beta2</title>
<updated>2018-10-17T06:28:20+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2018-10-17T06:28:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1b43644edc85a93bfc9228588c065c87f975cd93'/>
<id>1b43644edc85a93bfc9228588c065c87f975cd93</id>
<content type='text'>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge rdoc-6.1.0.beta1.</title>
<updated>2018-08-27T01:30:18+00:00</updated>
<author>
<name>hsbt</name>
<email>hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2018-08-27T01:30:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=95e213d3542034e0fd2613de6990a7ddfe5718ca'/>
<id>95e213d3542034e0fd2613de6990a7ddfe5718ca</id>
<content type='text'>
  * https://github.com/ruby/rdoc/compare/v6.0.4...v6.1.0.beta1

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  * https://github.com/ruby/rdoc/compare/v6.0.4...v6.1.0.beta1

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge rdoc-6.0.0.beta4 from upstream.</title>
<updated>2017-11-27T10:45:24+00:00</updated>
<author>
<name>hsbt</name>
<email>hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2017-11-27T10:45:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=55518710865bd7258422807524403c91347519a2'/>
<id>55518710865bd7258422807524403c91347519a2</id>
<content type='text'>
  It version applied `frozen_string_literal: true`

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  It version applied `frozen_string_literal: true`

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
