File: code.md

package info (click to toggle)
ruby-maruku 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,296 kB
  • ctags: 492
  • sloc: ruby: 5,726; xml: 235; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (3)
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
30
31
32
33
34
35
36
37
38
39
Comment
*** Parameters: ***
{}
*** Markdown input: ***
Here is an example of AppleScript:

    tell application "Foo"
        beep
    end tell
    	tab

*** Output of inspect ***
md_el(:document,[
	md_par(["Here is an example of AppleScript:"]),
	md_el(:code,[],{:raw_code=>"tell application \"Foo\"\n    beep\nend tell\n\ttab", :lang=>nil},[])
],{},[])
*** Output of to_html ***
<p>Here is an example of AppleScript:</p>

<pre><code>tell application "Foo"
    beep
end tell
	tab</code></pre>
*** Output of to_latex ***
Here is an example of AppleScript:

\begin{verbatim}tell application "Foo"
    beep
end tell
	tab\end{verbatim}
*** Output of to_md ***
Here is an example of AppleScript:

     tell application "Foo"
         beep
     end tell
     	tab
*** Output of to_s ***
Here is an example of AppleScript: