File: block_code.html

package info (click to toggle)
ruby-org 0.9.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,852 kB
  • sloc: ruby: 3,044; lisp: 50; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 659 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<h1>Block Code</h1>
<p>I need to get block code examples working. In <code>orgmode</code>, they look
  like this:</p>
<pre class="example">

def initialize(output)
  @output = output
  @buffer = &quot;&quot;
  @output_type = :start
  @list_indent_stack = []
  @paragraph_modifier = nil

  @logger = Logger.new(STDERR)
  @logger.level = Logger::WARN
end

</pre>
<p>And now I should be back to normal text.</p>
<p>Putting in another paragraph for good measure.</p>
<p>Code should also get cancelled by a list, thus:</p>
<pre class="example">
This is my code!

Another line!
</pre>
<ul>
  <li>My list should cancel this.</li>
  <li>Another list line.</li>
</ul>