44 lines
822 B
HTML
44 lines
822 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>Rdoc</h1>
|
|
<h3>Basic RDoc format</h3>
|
|
|
|
<pre><code># Foo.
|
|
#
|
|
# @example
|
|
#
|
|
# y
|
|
# g
|
|
#
|
|
# @param [String] param_name The xx and xx.
|
|
#
|
|
# @see http://url.com
|
|
#
|
|
# @return [true] if so
|
|
#
|
|
# == Definition lists
|
|
#
|
|
# list:: hi.
|
|
# +foo+:: parameterized
|
|
#
|
|
# == Definition lists
|
|
# [foo] also
|
|
# [bar] like this
|
|
</code></pre>
|
|
|
|
<p>http://rdoc.rubyforge.org/RDoc/Markup.html</p>
|
|
|
|
|
|
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
|
|
<script src="http://cachedcommons.org/cache/prettify/1.0.0/javascripts/prettify-min.js"></script>
|
|
<script>$("pre").addClass("prettyprint");</script>
|
|
<script>prettyPrint();</script>
|
|
</body>
|
|
</html>
|