188件ヒット
[101-188件を表示]
(0.034秒)
ライブラリ
- ビルトイン (8)
-
cgi
/ html (48) - erb (12)
- getoptlong (36)
-
net
/ pop (12) - rake (24)
-
rdoc
/ markup (12) -
rdoc
/ top _ level (36)
クラス
- ERB (12)
- Exception (8)
- GetoptLong (36)
-
Net
:: POPMail (12) -
RDoc
:: Markup (12) -
RDoc
:: TopLevel (36) -
Rake
:: InvocationChain (12) -
Rake
:: InvocationChain :: EmptyInvocationChain (12)
モジュール
-
CGI
:: HtmlExtension (48)
キーワード
- a (24)
-
add
_ word _ pair (12) - caption (24)
-
file
_ absolute _ name (12) -
file
_ relative _ name (12) -
full
_ name (12) - get (12)
-
get
_ option (12) - result (12)
-
to
_ s (24)
検索結果
先頭5件
-
Exception
# full _ message(highlight: true , order: :bottom) -> String (120.0) -
例外の整形された文字列を返します。
...@param order :top か :bottom で指定する必要があります。
バックトレースの一番奥がエラーメッセージの上(top)か下(bottom)かを指定します。
デフォルト値は Exception.to_tty? が真なら :bottom で偽なら :top です。
//e... -
Rake
:: InvocationChain :: EmptyInvocationChain # to _ s -> String (118.0) -
'TOP' という文字列を返します。
...'TOP' という文字列を返します。... -
CGI
:: HtmlExtension # a(href = "") -> String (115.0) -
a 要素を生成します。
...定することもできます。
例:
a("http://www.example.com") { "Example" }
# => "<A HREF=\"http://www.example.com\">Example</A>"
a("HREF" => "http://www.example.com", "TARGET" => "_top") { "Example" }
# => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>"... -
CGI
:: HtmlExtension # a(href = "") { . . . } -> String (115.0) -
a 要素を生成します。
...定することもできます。
例:
a("http://www.example.com") { "Example" }
# => "<A HREF=\"http://www.example.com\">Example</A>"
a("HREF" => "http://www.example.com", "TARGET" => "_top") { "Example" }
# => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>"... -
CGI
:: HtmlExtension # caption(align = nil) -> String (109.0) -
caption 要素を生成します。
...ブロックを与えると、ブロックを評価した結果が内容になります。
@param align 配置を文字列で指定します。(top, bottom, left right が指定可能です)
属性をハッシュで指定することもできます。
例:
caption("left") {... -
CGI
:: HtmlExtension # caption(align = nil) { . . . } -> String (109.0) -
caption 要素を生成します。
...ブロックを与えると、ブロックを評価した結果が内容になります。
@param align 配置を文字列で指定します。(top, bottom, left right が指定可能です)
属性をハッシュで指定することもできます。
例:
caption("left") {... -
Rake
:: InvocationChain # to _ s -> String (108.0) -
トップレベルのタスクから自身までの依存関係を文字列として返します。
...の依存関係を文字列として返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.to_s # => "TOP => task_a"
end
//}... -
RDoc
:: Markup # add _ word _ pair(start , stop , name) -> () (107.0) -
start と stop ではさまれる文字列(例. *bold*)をフォーマットの対象にしま す。
...start と stop ではさまれる文字列(例. *bold*)をフォーマットの対象にしま
す。
@param start 開始となる文字列を指定します。
@param stop 終了となる文字列を指定します。start と同じ文字列にする事も
可能です。
@param nam......::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 のように、
フォーマッタ側でも操作を行う必要が...