File: code.html

package info (click to toggle)
ruby-reverse-markdown 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: ruby: 1,452; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
  <body>
  <pre>pre block</pre>
  <code>code block</code>
  <pre><code>pre code block</code></pre>

	<p>Paragraph with inline <code>code</code> block</p>

	<pre><code>var this;
this.is("A multi line code block")
console.log("Yup, it is")
	</code></pre>

Code with indentation:
<pre><code>tell application "Foo"
    beep
end tell
</code></pre>

  </body>
</html>