641件ヒット
[601-641件を表示]
(0.060秒)
ライブラリ
- English (24)
-
cgi
/ html (264) - csv (48)
-
irb
/ context (12) -
irb
/ input-method (72) -
rdoc
/ markup (48) - readline (12)
-
rexml
/ document (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ specification (12) - zlib (24)
クラス
- CSV (48)
-
Gem
:: Package :: TarInput (12) -
Gem
:: Specification (12) -
IRB
:: Context (12) -
IRB
:: FileInputMethod (12) -
IRB
:: InputMethod (12) -
IRB
:: ReadlineInputMethod (24) -
IRB
:: StdioInputMethod (24) -
RDoc
:: Markup (36) -
REXML
:: Text (12) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (264) - Kernel (24)
- Readline (12)
キーワード
-
$ INPUT _ RECORD _ SEPARATOR (12) -
$ RS (12) - Markup (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - ZStream (12)
-
add
_ html (12) -
add
_ special (12) -
add
_ word _ pair (12) - cgi (12)
- checkbox (24)
-
checkbox
_ group (24) -
file
_ field (24) -
file
_ name (12) - filter (36)
- gets (36)
- hidden (24)
- line (24)
- new (24)
- normalize (12)
-
normalize
_ yaml _ input (12) -
password
_ field (24) -
radio
_ group (24) - rdoc (12)
-
rdoc
/ markup / to _ ansi (12) -
rdoc
/ markup / to _ bs (12) -
rdoc
/ markup / to _ html (12) - readline (12)
- reset (24)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ security (12) - submit (24)
-
text
_ field (24) -
zipped
_ stream (12)
検索結果
先頭4件
-
RDoc
:: Markup # add _ word _ pair(start , stop , name) -> () (12.0) -
start と stop ではさまれる文字列(例. *bold*)をフォーマットの対象にしま す。
...SM::SimpleMarkup.new
m.add_word_pair("{", "}", :STRIKE)
h = SM::ToHtml.new
h.add_tag(:STRIKE, "<strike>", "</strike>")
puts m.convert(input_string, h)
変換時に実際にフォーマットを行うには SM::ToHtml#add_tag のように、
フォーマッタ側でも操作を行う必要... -
rdoc
/ markup / to _ ansi (12.0) -
RDoc 形式のドキュメントを ANSI エスケープシーケンスで色付けするサブライ ブラリです。
...RDoc 形式のドキュメントを ANSI エスケープシーケンスで色付けするサブライ
ブラリです。
require 'rdoc/markup/to_ansi'
h = RDoc::Markup::ToAnsi.new
puts h.convert(input_string)
変換した結果は文字列で取得できます。... -
rdoc
/ markup / to _ bs (12.0) -
RDoc 形式のドキュメントをエスケープシーケンスで太字やアンダーラインの効 果を持たせるように見せるサブライブラリです。
...を持たせるように見せるサブライブラリです。
require 'rdoc/markup/to_bs'
h = RDoc::Markup::ToBs.new
puts h.convert(input_string)
変換した結果は文字列で取得できます。実際に効果を確認するためにはページャ
などで出力を確認します... -
rdoc
/ markup / to _ html (12.0) -
RDoc 形式のドキュメントを HTML に整形するためのサブライブラリです。
...RDoc 形式のドキュメントを HTML に整形するためのサブライブラリです。
require 'rdoc/markup/to_html'
h = RDoc::Markup::ToHtml.new
puts h.convert(input_string)
変換した結果は文字列で取得できます。...