るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.172秒)

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. openssl d
  4. rsa d=
  5. openssl d=

クラス

検索結果

RDoc::Markup#add_html(tag, name) -> () (91231.0)

tag で指定したタグをフォーマットの対象にします。

...oHtml などのフォーマッタに識別させる時の名前を
Symbol で指定します。

例:

require 'rdoc/markup/simple_markup'
require 'rdoc/markup/simple_markup/to_html'
m = SM::SimpleMarkup.new
m.add_html("no", :STRIKE)

h = SM::ToHtml.new
h.add_tag(:STRIKE, "<s...

RDoc::Markup#add_special(pattern, name) -> () (54928.0)

pattern で指定した正規表現にマッチする文字列をフォーマットの対象にしま す。

...oHtml などのフォーマッタに識別させる時の名前を
Symbol で指定します。

例:

require 'rdoc/markup/simple_markup'
require 'rdoc/markup/simple_markup/to_html'

class WikiHtml < SM::ToHtml
def handle_special_WIKIWORD(special)
"<font color=red>" + sp...