~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to mode/perl/index.html

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<html>
 
3
  <head>
 
4
    <title>CodeMirror: Perl mode</title>
 
5
    <link rel="stylesheet" href="../../lib/codemirror.css">
 
6
    <script src="../../lib/codemirror.js"></script>
 
7
    <script src="perl.js"></script>
 
8
    <link rel="stylesheet" href="../../doc/docs.css">
 
9
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
 
10
  </head>
 
11
  <body>
 
12
    <h1>CodeMirror: Perl mode</h1>
 
13
 
 
14
<div><textarea id="code" name="code">
 
15
#!/usr/bin/perl
 
16
 
 
17
use Something qw(func1 func2);
 
18
 
 
19
# strings
 
20
my $s1 = qq'single line';
 
21
our $s2 = q(multi-
 
22
              line);
 
23
 
 
24
=item Something
 
25
        Example.
 
26
=cut
 
27
 
 
28
my $html=<<'HTML'
 
29
<html>
 
30
<title>hi!</title>
 
31
</html>
 
32
HTML
 
33
 
 
34
print "first,".join(',', 'second', qq~third~);
 
35
 
 
36
if($s1 =~ m[(?<!\s)(l.ne)\z]o) {
 
37
        $h->{$1}=$$.' predefined variables';
 
38
        $s2 =~ s/\-line//ox;
 
39
        $s1 =~ s[
 
40
                  line ]
 
41
                [
 
42
                  block
 
43
                ]ox;
 
44
}
 
45
 
 
46
1; # numbers and comments
 
47
 
 
48
__END__
 
49
something...
 
50
 
 
51
</textarea></div>
 
52
 
 
53
    <script>
 
54
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
 
55
        lineNumbers: true,
 
56
        matchBrackets: true
 
57
      });
 
58
    </script>
 
59
 
 
60
    <p><strong>MIME types defined:</strong> <code>text/x-perl</code>.</p>
 
61
  </body>
 
62
</html>