jekyll-theme-anc 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +1 -0
- data/_includes/disqus.html +42 -0
- data/_includes/facebook_share_btn.html +1 -0
- data/_includes/footer.html +79 -0
- data/_includes/go2top.html +22 -0
- data/_includes/google-analytics.html +11 -0
- data/_includes/head.html +50 -0
- data/_includes/header.html +13 -0
- data/_includes/jspdf.html +41 -0
- data/_includes/nav.html +25 -0
- data/_includes/pageloginpoper.html +59 -0
- data/_includes/post-categories.html +8 -0
- data/_includes/post_seo.html +59 -0
- data/_includes/youtube_video.html +11 -0
- data/_layouts/blog.html +33 -0
- data/_layouts/default.html +151 -0
- data/_layouts/home.html +26 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +83 -0
- data/_sass/anc.scss +9 -0
- data/_sass/anc/_base.scss +144 -0
- data/_sass/anc/_layout.scss +0 -0
- data/_sass/anc/_materialize.scss +38 -0
- data/_sass/anc/_syntax-highlighting.scss +78 -0
- data/_sass/anc/components/_variables.scss +343 -0
- data/_sass/materialize-css/components/_badges.scss +47 -0
- data/_sass/materialize-css/components/_buttons.scss +291 -0
- data/_sass/materialize-css/components/_cards.scss +196 -0
- data/_sass/materialize-css/components/_carousel.scss +90 -0
- data/_sass/materialize-css/components/_chips.scss +89 -0
- data/_sass/materialize-css/components/_collapsible.scss +84 -0
- data/_sass/materialize-css/components/_color.scss +412 -0
- data/_sass/materialize-css/components/_dropdown.scss +68 -0
- data/_sass/materialize-css/components/_global.scss +734 -0
- data/_sass/materialize-css/components/_grid.scss +156 -0
- data/_sass/materialize-css/components/_icons-material-design.scss +5 -0
- data/_sass/materialize-css/components/_materialbox.scss +43 -0
- data/_sass/materialize-css/components/_modal.scss +90 -0
- data/_sass/materialize-css/components/_navbar.scss +208 -0
- data/_sass/materialize-css/components/_normalize.scss +424 -0
- data/_sass/materialize-css/components/_preloader.scss +334 -0
- data/_sass/materialize-css/components/_pulse.scss +34 -0
- data/_sass/materialize-css/components/_roboto.scss +39 -0
- data/_sass/materialize-css/components/_sideNav.scss +214 -0
- data/_sass/materialize-css/components/_slider.scss +92 -0
- data/_sass/materialize-css/components/_table_of_contents.scss +33 -0
- data/_sass/materialize-css/components/_tabs.scss +93 -0
- data/_sass/materialize-css/components/_tapTarget.scss +103 -0
- data/_sass/materialize-css/components/_toast.scss +59 -0
- data/_sass/materialize-css/components/_tooltip.scss +31 -0
- data/_sass/materialize-css/components/_transitions.scss +13 -0
- data/_sass/materialize-css/components/_typography.scss +61 -0
- data/_sass/materialize-css/components/_variables.scss +343 -0
- data/_sass/materialize-css/components/_waves.scss +114 -0
- data/_sass/materialize-css/components/date_picker/_default.date.scss +456 -0
- data/_sass/materialize-css/components/date_picker/_default.scss +212 -0
- data/_sass/materialize-css/components/date_picker/_default.time.scss +267 -0
- data/_sass/materialize-css/components/forms/_checkboxes.scss +210 -0
- data/_sass/materialize-css/components/forms/_file-input.scss +44 -0
- data/_sass/materialize-css/components/forms/_forms.scss +22 -0
- data/_sass/materialize-css/components/forms/_input-fields.scss +333 -0
- data/_sass/materialize-css/components/forms/_radio-buttons.scss +115 -0
- data/_sass/materialize-css/components/forms/_range.scss +160 -0
- data/_sass/materialize-css/components/forms/_select.scss +182 -0
- data/_sass/materialize-css/components/forms/_switches.scss +89 -0
- data/_sass/materialize-css/materialize.scss +42 -0
- data/_sass/materialize/components/_badges.scss +47 -0
- data/_sass/materialize/components/_buttons.scss +291 -0
- data/_sass/materialize/components/_cards.scss +196 -0
- data/_sass/materialize/components/_carousel.scss +90 -0
- data/_sass/materialize/components/_chips.scss +89 -0
- data/_sass/materialize/components/_collapsible.scss +84 -0
- data/_sass/materialize/components/_color.scss +412 -0
- data/_sass/materialize/components/_dropdown.scss +68 -0
- data/_sass/materialize/components/_global.scss +734 -0
- data/_sass/materialize/components/_grid.scss +156 -0
- data/_sass/materialize/components/_icons-material-design.scss +5 -0
- data/_sass/materialize/components/_materialbox.scss +43 -0
- data/_sass/materialize/components/_modal.scss +90 -0
- data/_sass/materialize/components/_navbar.scss +208 -0
- data/_sass/materialize/components/_normalize.scss +424 -0
- data/_sass/materialize/components/_preloader.scss +334 -0
- data/_sass/materialize/components/_pulse.scss +34 -0
- data/_sass/materialize/components/_roboto.scss +39 -0
- data/_sass/materialize/components/_sideNav.scss +214 -0
- data/_sass/materialize/components/_slider.scss +92 -0
- data/_sass/materialize/components/_table_of_contents.scss +33 -0
- data/_sass/materialize/components/_tabs.scss +93 -0
- data/_sass/materialize/components/_tapTarget.scss +103 -0
- data/_sass/materialize/components/_toast.scss +59 -0
- data/_sass/materialize/components/_tooltip.scss +31 -0
- data/_sass/materialize/components/_transitions.scss +13 -0
- data/_sass/materialize/components/_typography.scss +61 -0
- data/_sass/materialize/components/_variables.scss +343 -0
- data/_sass/materialize/components/_waves.scss +114 -0
- data/_sass/materialize/components/date_picker/_default.date.scss +456 -0
- data/_sass/materialize/components/date_picker/_default.scss +212 -0
- data/_sass/materialize/components/date_picker/_default.time.scss +267 -0
- data/_sass/materialize/components/forms/_checkboxes.scss +210 -0
- data/_sass/materialize/components/forms/_file-input.scss +44 -0
- data/_sass/materialize/components/forms/_forms.scss +22 -0
- data/_sass/materialize/components/forms/_input-fields.scss +333 -0
- data/_sass/materialize/components/forms/_radio-buttons.scss +115 -0
- data/_sass/materialize/components/forms/_range.scss +160 -0
- data/_sass/materialize/components/forms/_select.scss +182 -0
- data/_sass/materialize/components/forms/_switches.scss +89 -0
- data/_sass/materialize/materialize.scss +42 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/roboto/Roboto-Bold.woff +0 -0
- data/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
- data/assets/fonts/roboto/Roboto-Light.woff +0 -0
- data/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
- data/assets/fonts/roboto/Roboto-Medium.woff +0 -0
- data/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
- data/assets/fonts/roboto/Roboto-Regular.woff +0 -0
- data/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
- data/assets/fonts/roboto/Roboto-Thin.woff +0 -0
- data/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
- data/assets/images/close.png +0 -0
- data/assets/images/loader.gif +0 -0
- data/assets/img/icons/facebook-square.png +0 -0
- data/assets/img/icons/github-square.png +0 -0
- data/assets/img/icons/twitter-square.png +0 -0
- data/assets/img/icons/youtube-square.png +0 -0
- data/assets/img/jubayed11.37-16.jpg +0 -0
- data/assets/img/parallax1.jpg +0 -0
- data/assets/img/sample-1.jpg +0 -0
- data/assets/js/custom_script.js +200 -0
- data/assets/js/highlight.pack.js +2 -0
- data/assets/js/materialize.min.js +6 -0
- data/assets/js/mode/apl/apl.js +174 -0
- data/assets/js/mode/asciiarmor/asciiarmor.js +74 -0
- data/assets/js/mode/asn.1/asn.1.js +204 -0
- data/assets/js/mode/asterisk/asterisk.js +196 -0
- data/assets/js/mode/brainfuck/brainfuck.js +85 -0
- data/assets/js/mode/clike/clike.js +789 -0
- data/assets/js/mode/clojure/clojure.js +306 -0
- data/assets/js/mode/cmake/cmake.js +97 -0
- data/assets/js/mode/cobol/cobol.js +255 -0
- data/assets/js/mode/coffeescript/coffeescript.js +359 -0
- data/assets/js/mode/commonlisp/commonlisp.js +124 -0
- data/assets/js/mode/crystal/crystal.js +433 -0
- data/assets/js/mode/css/css.js +831 -0
- data/assets/js/mode/cypher/cypher.js +150 -0
- data/assets/js/mode/d/d.js +218 -0
- data/assets/js/mode/dart/dart.js +157 -0
- data/assets/js/mode/diff/diff.js +47 -0
- data/assets/js/mode/django/django.js +356 -0
- data/assets/js/mode/dockerfile/dockerfile.js +79 -0
- data/assets/js/mode/dtd/dtd.js +142 -0
- data/assets/js/mode/dylan/dylan.js +352 -0
- data/assets/js/mode/ebnf/ebnf.js +195 -0
- data/assets/js/mode/ecl/ecl.js +206 -0
- data/assets/js/mode/eiffel/eiffel.js +160 -0
- data/assets/js/mode/elm/elm.js +205 -0
- data/assets/js/mode/erlang/erlang.js +619 -0
- data/assets/js/mode/factor/factor.js +85 -0
- data/assets/js/mode/fcl/fcl.js +173 -0
- data/assets/js/mode/forth/forth.js +180 -0
- data/assets/js/mode/fortran/fortran.js +188 -0
- data/assets/js/mode/gas/gas.js +345 -0
- data/assets/js/mode/gfm/gfm.js +129 -0
- data/assets/js/mode/gherkin/gherkin.js +178 -0
- data/assets/js/mode/go/go.js +187 -0
- data/assets/js/mode/groovy/groovy.js +230 -0
- data/assets/js/mode/haml/haml.js +161 -0
- data/assets/js/mode/handlebars/handlebars.js +62 -0
- data/assets/js/mode/haskell-literate/haskell-literate.js +43 -0
- data/assets/js/mode/haskell/haskell.js +267 -0
- data/assets/js/mode/haxe/haxe.js +515 -0
- data/assets/js/mode/htmlembedded/htmlembedded.js +28 -0
- data/assets/js/mode/htmlmixed/htmlmixed.js +152 -0
- data/assets/js/mode/http/http.js +113 -0
- data/assets/js/mode/idl/idl.js +290 -0
- data/assets/js/mode/javascript/javascript.js +838 -0
- data/assets/js/mode/jinja2/jinja2.js +142 -0
- data/assets/js/mode/jsx/jsx.js +148 -0
- data/assets/js/mode/julia/julia.js +418 -0
- data/assets/js/mode/livescript/livescript.js +280 -0
- data/assets/js/mode/lua/lua.js +159 -0
- data/assets/js/mode/markdown/markdown.js +859 -0
- data/assets/js/mode/mathematica/mathematica.js +176 -0
- data/assets/js/mode/mbox/mbox.js +129 -0
- data/assets/js/mode/meta.js +215 -0
- data/assets/js/mode/mirc/mirc.js +193 -0
- data/assets/js/mode/mllike/mllike.js +208 -0
- data/assets/js/mode/modelica/modelica.js +245 -0
- data/assets/js/mode/mscgen/mscgen.js +175 -0
- data/assets/js/mode/mumps/mumps.js +148 -0
- data/assets/js/mode/nginx/nginx.js +178 -0
- data/assets/js/mode/nsis/nsis.js +95 -0
- data/assets/js/mode/ntriples/ntriples.js +195 -0
- data/assets/js/mode/octave/octave.js +139 -0
- data/assets/js/mode/oz/oz.js +252 -0
- data/assets/js/mode/pascal/pascal.js +109 -0
- data/assets/js/mode/pegjs/pegjs.js +114 -0
- data/assets/js/mode/perl/perl.js +837 -0
- data/assets/js/mode/php/php.js +234 -0
- data/assets/js/mode/pig/pig.js +178 -0
- data/assets/js/mode/powershell/powershell.js +398 -0
- data/assets/js/mode/properties/properties.js +78 -0
- data/assets/js/mode/protobuf/protobuf.js +68 -0
- data/assets/js/mode/pug/pug.js +591 -0
- data/assets/js/mode/puppet/puppet.js +220 -0
- data/assets/js/mode/python/python.js +334 -0
- data/assets/js/mode/q/q.js +139 -0
- data/assets/js/mode/r/r.js +183 -0
- data/assets/js/mode/rpm/changes/index.html +66 -0
- data/assets/js/mode/rpm/rpm.js +109 -0
- data/assets/js/mode/rst/rst.js +557 -0
- data/assets/js/mode/ruby/ruby.js +295 -0
- data/assets/js/mode/rust/rust.js +72 -0
- data/assets/js/mode/sas/sas.js +303 -0
- data/assets/js/mode/sass/sass.js +454 -0
- data/assets/js/mode/scheme/scheme.js +249 -0
- data/assets/js/mode/shell/shell.js +142 -0
- data/assets/js/mode/sieve/sieve.js +193 -0
- data/assets/js/mode/slim/slim.js +575 -0
- data/assets/js/mode/smalltalk/smalltalk.js +168 -0
- data/assets/js/mode/smarty/smarty.js +225 -0
- data/assets/js/mode/solr/solr.js +104 -0
- data/assets/js/mode/soy/soy.js +342 -0
- data/assets/js/mode/sparql/sparql.js +180 -0
- data/assets/js/mode/spreadsheet/spreadsheet.js +112 -0
- data/assets/js/mode/sql/sql.js +475 -0
- data/assets/js/mode/stex/stex.js +251 -0
- data/assets/js/mode/stylus/stylus.js +771 -0
- data/assets/js/mode/swift/swift.js +210 -0
- data/assets/js/mode/tcl/tcl.js +139 -0
- data/assets/js/mode/textile/textile.js +469 -0
- data/assets/js/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/assets/js/mode/tiddlywiki/tiddlywiki.js +308 -0
- data/assets/js/mode/tiki/tiki.css +26 -0
- data/assets/js/mode/tiki/tiki.js +312 -0
- data/assets/js/mode/toml/toml.js +88 -0
- data/assets/js/mode/tornado/tornado.js +68 -0
- data/assets/js/mode/troff/troff.js +84 -0
- data/assets/js/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- data/assets/js/mode/ttcn/ttcn.js +283 -0
- data/assets/js/mode/turtle/turtle.js +162 -0
- data/assets/js/mode/twig/twig.js +141 -0
- data/assets/js/mode/vb/vb.js +275 -0
- data/assets/js/mode/vbscript/vbscript.js +350 -0
- data/assets/js/mode/velocity/velocity.js +201 -0
- data/assets/js/mode/verilog/verilog.js +675 -0
- data/assets/js/mode/vhdl/vhdl.js +189 -0
- data/assets/js/mode/vue/vue.js +70 -0
- data/assets/js/mode/webidl/webidl.js +195 -0
- data/assets/js/mode/xml/xml.js +394 -0
- data/assets/js/mode/xquery/xquery.js +448 -0
- data/assets/js/mode/yacas/yacas.js +204 -0
- data/assets/js/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
- data/assets/js/mode/yaml/yaml.js +118 -0
- data/assets/js/mode/z80/z80.js +116 -0
- data/assets/main.scss +5 -0
- metadata +347 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
// Factor syntax highlight - simple mode
|
5
|
+
//
|
6
|
+
// by Dimage Sapelkin (https://github.com/kerabromsmu)
|
7
|
+
|
8
|
+
(function(mod) {
|
9
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
10
|
+
mod(require("../../lib/codemirror"), require("../../addon/mode/simple"));
|
11
|
+
else if (typeof define == "function" && define.amd) // AMD
|
12
|
+
define(["../../lib/codemirror", "../../addon/mode/simple"], mod);
|
13
|
+
else // Plain browser env
|
14
|
+
mod(CodeMirror);
|
15
|
+
})(function(CodeMirror) {
|
16
|
+
"use strict";
|
17
|
+
|
18
|
+
CodeMirror.defineSimpleMode("factor", {
|
19
|
+
// The start state contains the rules that are intially used
|
20
|
+
start: [
|
21
|
+
// comments
|
22
|
+
{regex: /#?!.*/, token: "comment"},
|
23
|
+
// strings """, multiline --> state
|
24
|
+
{regex: /"""/, token: "string", next: "string3"},
|
25
|
+
{regex: /(STRING:)(\s)/, token: ["keyword", null], next: "string2"},
|
26
|
+
{regex: /\S*?"/, token: "string", next: "string"},
|
27
|
+
// numbers: dec, hex, unicode, bin, fractional, complex
|
28
|
+
{regex: /(?:0x[\d,a-f]+)|(?:0o[0-7]+)|(?:0b[0,1]+)|(?:\-?\d+.?\d*)(?=\s)/, token: "number"},
|
29
|
+
//{regex: /[+-]?/} //fractional
|
30
|
+
// definition: defining word, defined word, etc
|
31
|
+
{regex: /((?:GENERIC)|\:?\:)(\s+)(\S+)(\s+)(\()/, token: ["keyword", null, "def", null, "bracket"], next: "stack"},
|
32
|
+
// method definition: defining word, type, defined word, etc
|
33
|
+
{regex: /(M\:)(\s+)(\S+)(\s+)(\S+)/, token: ["keyword", null, "def", null, "tag"]},
|
34
|
+
// vocabulary using --> state
|
35
|
+
{regex: /USING\:/, token: "keyword", next: "vocabulary"},
|
36
|
+
// vocabulary definition/use
|
37
|
+
{regex: /(USE\:|IN\:)(\s+)(\S+)(?=\s|$)/, token: ["keyword", null, "tag"]},
|
38
|
+
// definition: a defining word, defined word
|
39
|
+
{regex: /(\S+\:)(\s+)(\S+)(?=\s|$)/, token: ["keyword", null, "def"]},
|
40
|
+
// "keywords", incl. ; t f . [ ] { } defining words
|
41
|
+
{regex: /(?:;|\\|t|f|if|loop|while|until|do|PRIVATE>|<PRIVATE|\.|\S*\[|\]|\S*\{|\})(?=\s|$)/, token: "keyword"},
|
42
|
+
// <constructors> and the like
|
43
|
+
{regex: /\S+[\)>\.\*\?]+(?=\s|$)/, token: "builtin"},
|
44
|
+
{regex: /[\)><]+\S+(?=\s|$)/, token: "builtin"},
|
45
|
+
// operators
|
46
|
+
{regex: /(?:[\+\-\=\/\*<>])(?=\s|$)/, token: "keyword"},
|
47
|
+
// any id (?)
|
48
|
+
{regex: /\S+/, token: "variable"},
|
49
|
+
{regex: /\s+|./, token: null}
|
50
|
+
],
|
51
|
+
vocabulary: [
|
52
|
+
{regex: /;/, token: "keyword", next: "start"},
|
53
|
+
{regex: /\S+/, token: "tag"},
|
54
|
+
{regex: /\s+|./, token: null}
|
55
|
+
],
|
56
|
+
string: [
|
57
|
+
{regex: /(?:[^\\]|\\.)*?"/, token: "string", next: "start"},
|
58
|
+
{regex: /.*/, token: "string"}
|
59
|
+
],
|
60
|
+
string2: [
|
61
|
+
{regex: /^;/, token: "keyword", next: "start"},
|
62
|
+
{regex: /.*/, token: "string"}
|
63
|
+
],
|
64
|
+
string3: [
|
65
|
+
{regex: /(?:[^\\]|\\.)*?"""/, token: "string", next: "start"},
|
66
|
+
{regex: /.*/, token: "string"}
|
67
|
+
],
|
68
|
+
stack: [
|
69
|
+
{regex: /\)/, token: "bracket", next: "start"},
|
70
|
+
{regex: /--/, token: "bracket"},
|
71
|
+
{regex: /\S+/, token: "meta"},
|
72
|
+
{regex: /\s+|./, token: null}
|
73
|
+
],
|
74
|
+
// The meta property contains global information about the mode. It
|
75
|
+
// can contain properties like lineComment, which are supported by
|
76
|
+
// all modes, and also directives like dontIndentStates, which are
|
77
|
+
// specific to simple modes.
|
78
|
+
meta: {
|
79
|
+
dontIndentStates: ["start", "vocabulary", "string", "string3", "stack"],
|
80
|
+
lineComment: [ "!", "#!" ]
|
81
|
+
}
|
82
|
+
});
|
83
|
+
|
84
|
+
CodeMirror.defineMIME("text/x-factor", "factor");
|
85
|
+
});
|
@@ -0,0 +1,173 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
CodeMirror.defineMode("fcl", function(config) {
|
15
|
+
var indentUnit = config.indentUnit;
|
16
|
+
|
17
|
+
var keywords = {
|
18
|
+
"term": true,
|
19
|
+
"method": true, "accu": true,
|
20
|
+
"rule": true, "then": true, "is": true, "and": true, "or": true,
|
21
|
+
"if": true, "default": true
|
22
|
+
};
|
23
|
+
|
24
|
+
var start_blocks = {
|
25
|
+
"var_input": true,
|
26
|
+
"var_output": true,
|
27
|
+
"fuzzify": true,
|
28
|
+
"defuzzify": true,
|
29
|
+
"function_block": true,
|
30
|
+
"ruleblock": true
|
31
|
+
};
|
32
|
+
|
33
|
+
var end_blocks = {
|
34
|
+
"end_ruleblock": true,
|
35
|
+
"end_defuzzify": true,
|
36
|
+
"end_function_block": true,
|
37
|
+
"end_fuzzify": true,
|
38
|
+
"end_var": true
|
39
|
+
};
|
40
|
+
|
41
|
+
var atoms = {
|
42
|
+
"true": true, "false": true, "nan": true,
|
43
|
+
"real": true, "min": true, "max": true, "cog": true, "cogs": true
|
44
|
+
};
|
45
|
+
|
46
|
+
var isOperatorChar = /[+\-*&^%:=<>!|\/]/;
|
47
|
+
|
48
|
+
function tokenBase(stream, state) {
|
49
|
+
var ch = stream.next();
|
50
|
+
|
51
|
+
if (/[\d\.]/.test(ch)) {
|
52
|
+
if (ch == ".") {
|
53
|
+
stream.match(/^[0-9]+([eE][\-+]?[0-9]+)?/);
|
54
|
+
} else if (ch == "0") {
|
55
|
+
stream.match(/^[xX][0-9a-fA-F]+/) || stream.match(/^0[0-7]+/);
|
56
|
+
} else {
|
57
|
+
stream.match(/^[0-9]*\.?[0-9]*([eE][\-+]?[0-9]+)?/);
|
58
|
+
}
|
59
|
+
return "number";
|
60
|
+
}
|
61
|
+
|
62
|
+
if (ch == "/" || ch == "(") {
|
63
|
+
if (stream.eat("*")) {
|
64
|
+
state.tokenize = tokenComment;
|
65
|
+
return tokenComment(stream, state);
|
66
|
+
}
|
67
|
+
if (stream.eat("/")) {
|
68
|
+
stream.skipToEnd();
|
69
|
+
return "comment";
|
70
|
+
}
|
71
|
+
}
|
72
|
+
if (isOperatorChar.test(ch)) {
|
73
|
+
stream.eatWhile(isOperatorChar);
|
74
|
+
return "operator";
|
75
|
+
}
|
76
|
+
stream.eatWhile(/[\w\$_\xa1-\uffff]/);
|
77
|
+
|
78
|
+
var cur = stream.current().toLowerCase();
|
79
|
+
if (keywords.propertyIsEnumerable(cur) ||
|
80
|
+
start_blocks.propertyIsEnumerable(cur) ||
|
81
|
+
end_blocks.propertyIsEnumerable(cur)) {
|
82
|
+
return "keyword";
|
83
|
+
}
|
84
|
+
if (atoms.propertyIsEnumerable(cur)) return "atom";
|
85
|
+
return "variable";
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
function tokenComment(stream, state) {
|
90
|
+
var maybeEnd = false, ch;
|
91
|
+
while (ch = stream.next()) {
|
92
|
+
if ((ch == "/" || ch == ")") && maybeEnd) {
|
93
|
+
state.tokenize = tokenBase;
|
94
|
+
break;
|
95
|
+
}
|
96
|
+
maybeEnd = (ch == "*");
|
97
|
+
}
|
98
|
+
return "comment";
|
99
|
+
}
|
100
|
+
|
101
|
+
function Context(indented, column, type, align, prev) {
|
102
|
+
this.indented = indented;
|
103
|
+
this.column = column;
|
104
|
+
this.type = type;
|
105
|
+
this.align = align;
|
106
|
+
this.prev = prev;
|
107
|
+
}
|
108
|
+
|
109
|
+
function pushContext(state, col, type) {
|
110
|
+
return state.context = new Context(state.indented, col, type, null, state.context);
|
111
|
+
}
|
112
|
+
|
113
|
+
function popContext(state) {
|
114
|
+
if (!state.context.prev) return;
|
115
|
+
var t = state.context.type;
|
116
|
+
if (t == "end_block")
|
117
|
+
state.indented = state.context.indented;
|
118
|
+
return state.context = state.context.prev;
|
119
|
+
}
|
120
|
+
|
121
|
+
// Interface
|
122
|
+
|
123
|
+
return {
|
124
|
+
startState: function(basecolumn) {
|
125
|
+
return {
|
126
|
+
tokenize: null,
|
127
|
+
context: new Context((basecolumn || 0) - indentUnit, 0, "top", false),
|
128
|
+
indented: 0,
|
129
|
+
startOfLine: true
|
130
|
+
};
|
131
|
+
},
|
132
|
+
|
133
|
+
token: function(stream, state) {
|
134
|
+
var ctx = state.context;
|
135
|
+
if (stream.sol()) {
|
136
|
+
if (ctx.align == null) ctx.align = false;
|
137
|
+
state.indented = stream.indentation();
|
138
|
+
state.startOfLine = true;
|
139
|
+
}
|
140
|
+
if (stream.eatSpace()) return null;
|
141
|
+
|
142
|
+
var style = (state.tokenize || tokenBase)(stream, state);
|
143
|
+
if (style == "comment") return style;
|
144
|
+
if (ctx.align == null) ctx.align = true;
|
145
|
+
|
146
|
+
var cur = stream.current().toLowerCase();
|
147
|
+
|
148
|
+
if (start_blocks.propertyIsEnumerable(cur)) pushContext(state, stream.column(), "end_block");
|
149
|
+
else if (end_blocks.propertyIsEnumerable(cur)) popContext(state);
|
150
|
+
|
151
|
+
state.startOfLine = false;
|
152
|
+
return style;
|
153
|
+
},
|
154
|
+
|
155
|
+
indent: function(state, textAfter) {
|
156
|
+
if (state.tokenize != tokenBase && state.tokenize != null) return 0;
|
157
|
+
var ctx = state.context;
|
158
|
+
|
159
|
+
var closing = end_blocks.propertyIsEnumerable(textAfter);
|
160
|
+
if (ctx.align) return ctx.column + (closing ? 0 : 1);
|
161
|
+
else return ctx.indented + (closing ? 0 : indentUnit);
|
162
|
+
},
|
163
|
+
|
164
|
+
electricChars: "ryk",
|
165
|
+
fold: "brace",
|
166
|
+
blockCommentStart: "(*",
|
167
|
+
blockCommentEnd: "*)",
|
168
|
+
lineComment: "//"
|
169
|
+
};
|
170
|
+
});
|
171
|
+
|
172
|
+
CodeMirror.defineMIME("text/x-fcl", "fcl");
|
173
|
+
});
|
@@ -0,0 +1,180 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
// Author: Aliaksei Chapyzhenka
|
5
|
+
|
6
|
+
(function(mod) {
|
7
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
8
|
+
mod(require("../../lib/codemirror"));
|
9
|
+
else if (typeof define == "function" && define.amd) // AMD
|
10
|
+
define(["../../lib/codemirror"], mod);
|
11
|
+
else // Plain browser env
|
12
|
+
mod(CodeMirror);
|
13
|
+
})(function(CodeMirror) {
|
14
|
+
"use strict";
|
15
|
+
|
16
|
+
function toWordList(words) {
|
17
|
+
var ret = [];
|
18
|
+
words.split(' ').forEach(function(e){
|
19
|
+
ret.push({name: e});
|
20
|
+
});
|
21
|
+
return ret;
|
22
|
+
}
|
23
|
+
|
24
|
+
var coreWordList = toWordList(
|
25
|
+
'INVERT AND OR XOR\
|
26
|
+
2* 2/ LSHIFT RSHIFT\
|
27
|
+
0= = 0< < > U< MIN MAX\
|
28
|
+
2DROP 2DUP 2OVER 2SWAP ?DUP DEPTH DROP DUP OVER ROT SWAP\
|
29
|
+
>R R> R@\
|
30
|
+
+ - 1+ 1- ABS NEGATE\
|
31
|
+
S>D * M* UM*\
|
32
|
+
FM/MOD SM/REM UM/MOD */ */MOD / /MOD MOD\
|
33
|
+
HERE , @ ! CELL+ CELLS C, C@ C! CHARS 2@ 2!\
|
34
|
+
ALIGN ALIGNED +! ALLOT\
|
35
|
+
CHAR [CHAR] [ ] BL\
|
36
|
+
FIND EXECUTE IMMEDIATE COUNT LITERAL STATE\
|
37
|
+
; DOES> >BODY\
|
38
|
+
EVALUATE\
|
39
|
+
SOURCE >IN\
|
40
|
+
<# # #S #> HOLD SIGN BASE >NUMBER HEX DECIMAL\
|
41
|
+
FILL MOVE\
|
42
|
+
. CR EMIT SPACE SPACES TYPE U. .R U.R\
|
43
|
+
ACCEPT\
|
44
|
+
TRUE FALSE\
|
45
|
+
<> U> 0<> 0>\
|
46
|
+
NIP TUCK ROLL PICK\
|
47
|
+
2>R 2R@ 2R>\
|
48
|
+
WITHIN UNUSED MARKER\
|
49
|
+
I J\
|
50
|
+
TO\
|
51
|
+
COMPILE, [COMPILE]\
|
52
|
+
SAVE-INPUT RESTORE-INPUT\
|
53
|
+
PAD ERASE\
|
54
|
+
2LITERAL DNEGATE\
|
55
|
+
D- D+ D0< D0= D2* D2/ D< D= DMAX DMIN D>S DABS\
|
56
|
+
M+ M*/ D. D.R 2ROT DU<\
|
57
|
+
CATCH THROW\
|
58
|
+
FREE RESIZE ALLOCATE\
|
59
|
+
CS-PICK CS-ROLL\
|
60
|
+
GET-CURRENT SET-CURRENT FORTH-WORDLIST GET-ORDER SET-ORDER\
|
61
|
+
PREVIOUS SEARCH-WORDLIST WORDLIST FIND ALSO ONLY FORTH DEFINITIONS ORDER\
|
62
|
+
-TRAILING /STRING SEARCH COMPARE CMOVE CMOVE> BLANK SLITERAL');
|
63
|
+
|
64
|
+
var immediateWordList = toWordList('IF ELSE THEN BEGIN WHILE REPEAT UNTIL RECURSE [IF] [ELSE] [THEN] ?DO DO LOOP +LOOP UNLOOP LEAVE EXIT AGAIN CASE OF ENDOF ENDCASE');
|
65
|
+
|
66
|
+
CodeMirror.defineMode('forth', function() {
|
67
|
+
function searchWordList (wordList, word) {
|
68
|
+
var i;
|
69
|
+
for (i = wordList.length - 1; i >= 0; i--) {
|
70
|
+
if (wordList[i].name === word.toUpperCase()) {
|
71
|
+
return wordList[i];
|
72
|
+
}
|
73
|
+
}
|
74
|
+
return undefined;
|
75
|
+
}
|
76
|
+
return {
|
77
|
+
startState: function() {
|
78
|
+
return {
|
79
|
+
state: '',
|
80
|
+
base: 10,
|
81
|
+
coreWordList: coreWordList,
|
82
|
+
immediateWordList: immediateWordList,
|
83
|
+
wordList: []
|
84
|
+
};
|
85
|
+
},
|
86
|
+
token: function (stream, stt) {
|
87
|
+
var mat;
|
88
|
+
if (stream.eatSpace()) {
|
89
|
+
return null;
|
90
|
+
}
|
91
|
+
if (stt.state === '') { // interpretation
|
92
|
+
if (stream.match(/^(\]|:NONAME)(\s|$)/i)) {
|
93
|
+
stt.state = ' compilation';
|
94
|
+
return 'builtin compilation';
|
95
|
+
}
|
96
|
+
mat = stream.match(/^(\:)\s+(\S+)(\s|$)+/);
|
97
|
+
if (mat) {
|
98
|
+
stt.wordList.push({name: mat[2].toUpperCase()});
|
99
|
+
stt.state = ' compilation';
|
100
|
+
return 'def' + stt.state;
|
101
|
+
}
|
102
|
+
mat = stream.match(/^(VARIABLE|2VARIABLE|CONSTANT|2CONSTANT|CREATE|POSTPONE|VALUE|WORD)\s+(\S+)(\s|$)+/i);
|
103
|
+
if (mat) {
|
104
|
+
stt.wordList.push({name: mat[2].toUpperCase()});
|
105
|
+
return 'def' + stt.state;
|
106
|
+
}
|
107
|
+
mat = stream.match(/^(\'|\[\'\])\s+(\S+)(\s|$)+/);
|
108
|
+
if (mat) {
|
109
|
+
return 'builtin' + stt.state;
|
110
|
+
}
|
111
|
+
} else { // compilation
|
112
|
+
// ; [
|
113
|
+
if (stream.match(/^(\;|\[)(\s)/)) {
|
114
|
+
stt.state = '';
|
115
|
+
stream.backUp(1);
|
116
|
+
return 'builtin compilation';
|
117
|
+
}
|
118
|
+
if (stream.match(/^(\;|\[)($)/)) {
|
119
|
+
stt.state = '';
|
120
|
+
return 'builtin compilation';
|
121
|
+
}
|
122
|
+
if (stream.match(/^(POSTPONE)\s+\S+(\s|$)+/)) {
|
123
|
+
return 'builtin';
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
// dynamic wordlist
|
128
|
+
mat = stream.match(/^(\S+)(\s+|$)/);
|
129
|
+
if (mat) {
|
130
|
+
if (searchWordList(stt.wordList, mat[1]) !== undefined) {
|
131
|
+
return 'variable' + stt.state;
|
132
|
+
}
|
133
|
+
|
134
|
+
// comments
|
135
|
+
if (mat[1] === '\\') {
|
136
|
+
stream.skipToEnd();
|
137
|
+
return 'comment' + stt.state;
|
138
|
+
}
|
139
|
+
|
140
|
+
// core words
|
141
|
+
if (searchWordList(stt.coreWordList, mat[1]) !== undefined) {
|
142
|
+
return 'builtin' + stt.state;
|
143
|
+
}
|
144
|
+
if (searchWordList(stt.immediateWordList, mat[1]) !== undefined) {
|
145
|
+
return 'keyword' + stt.state;
|
146
|
+
}
|
147
|
+
|
148
|
+
if (mat[1] === '(') {
|
149
|
+
stream.eatWhile(function (s) { return s !== ')'; });
|
150
|
+
stream.eat(')');
|
151
|
+
return 'comment' + stt.state;
|
152
|
+
}
|
153
|
+
|
154
|
+
// // strings
|
155
|
+
if (mat[1] === '.(') {
|
156
|
+
stream.eatWhile(function (s) { return s !== ')'; });
|
157
|
+
stream.eat(')');
|
158
|
+
return 'string' + stt.state;
|
159
|
+
}
|
160
|
+
if (mat[1] === 'S"' || mat[1] === '."' || mat[1] === 'C"') {
|
161
|
+
stream.eatWhile(function (s) { return s !== '"'; });
|
162
|
+
stream.eat('"');
|
163
|
+
return 'string' + stt.state;
|
164
|
+
}
|
165
|
+
|
166
|
+
// numbers
|
167
|
+
if (mat[1] - 0xfffffffff) {
|
168
|
+
return 'number' + stt.state;
|
169
|
+
}
|
170
|
+
// if (mat[1].match(/^[-+]?[0-9]+\.[0-9]*/)) {
|
171
|
+
// return 'number' + stt.state;
|
172
|
+
// }
|
173
|
+
|
174
|
+
return 'atom' + stt.state;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
};
|
178
|
+
});
|
179
|
+
CodeMirror.defineMIME("text/x-forth", "forth");
|
180
|
+
});
|
@@ -0,0 +1,188 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
CodeMirror.defineMode("fortran", function() {
|
15
|
+
function words(array) {
|
16
|
+
var keys = {};
|
17
|
+
for (var i = 0; i < array.length; ++i) {
|
18
|
+
keys[array[i]] = true;
|
19
|
+
}
|
20
|
+
return keys;
|
21
|
+
}
|
22
|
+
|
23
|
+
var keywords = words([
|
24
|
+
"abstract", "accept", "allocatable", "allocate",
|
25
|
+
"array", "assign", "asynchronous", "backspace",
|
26
|
+
"bind", "block", "byte", "call", "case",
|
27
|
+
"class", "close", "common", "contains",
|
28
|
+
"continue", "cycle", "data", "deallocate",
|
29
|
+
"decode", "deferred", "dimension", "do",
|
30
|
+
"elemental", "else", "encode", "end",
|
31
|
+
"endif", "entry", "enumerator", "equivalence",
|
32
|
+
"exit", "external", "extrinsic", "final",
|
33
|
+
"forall", "format", "function", "generic",
|
34
|
+
"go", "goto", "if", "implicit", "import", "include",
|
35
|
+
"inquire", "intent", "interface", "intrinsic",
|
36
|
+
"module", "namelist", "non_intrinsic",
|
37
|
+
"non_overridable", "none", "nopass",
|
38
|
+
"nullify", "open", "optional", "options",
|
39
|
+
"parameter", "pass", "pause", "pointer",
|
40
|
+
"print", "private", "program", "protected",
|
41
|
+
"public", "pure", "read", "recursive", "result",
|
42
|
+
"return", "rewind", "save", "select", "sequence",
|
43
|
+
"stop", "subroutine", "target", "then", "to", "type",
|
44
|
+
"use", "value", "volatile", "where", "while",
|
45
|
+
"write"]);
|
46
|
+
var builtins = words(["abort", "abs", "access", "achar", "acos",
|
47
|
+
"adjustl", "adjustr", "aimag", "aint", "alarm",
|
48
|
+
"all", "allocated", "alog", "amax", "amin",
|
49
|
+
"amod", "and", "anint", "any", "asin",
|
50
|
+
"associated", "atan", "besj", "besjn", "besy",
|
51
|
+
"besyn", "bit_size", "btest", "cabs", "ccos",
|
52
|
+
"ceiling", "cexp", "char", "chdir", "chmod",
|
53
|
+
"clog", "cmplx", "command_argument_count",
|
54
|
+
"complex", "conjg", "cos", "cosh", "count",
|
55
|
+
"cpu_time", "cshift", "csin", "csqrt", "ctime",
|
56
|
+
"c_funloc", "c_loc", "c_associated", "c_null_ptr",
|
57
|
+
"c_null_funptr", "c_f_pointer", "c_null_char",
|
58
|
+
"c_alert", "c_backspace", "c_form_feed",
|
59
|
+
"c_new_line", "c_carriage_return",
|
60
|
+
"c_horizontal_tab", "c_vertical_tab", "dabs",
|
61
|
+
"dacos", "dasin", "datan", "date_and_time",
|
62
|
+
"dbesj", "dbesj", "dbesjn", "dbesy", "dbesy",
|
63
|
+
"dbesyn", "dble", "dcos", "dcosh", "ddim", "derf",
|
64
|
+
"derfc", "dexp", "digits", "dim", "dint", "dlog",
|
65
|
+
"dlog", "dmax", "dmin", "dmod", "dnint",
|
66
|
+
"dot_product", "dprod", "dsign", "dsinh",
|
67
|
+
"dsin", "dsqrt", "dtanh", "dtan", "dtime",
|
68
|
+
"eoshift", "epsilon", "erf", "erfc", "etime",
|
69
|
+
"exit", "exp", "exponent", "extends_type_of",
|
70
|
+
"fdate", "fget", "fgetc", "float", "floor",
|
71
|
+
"flush", "fnum", "fputc", "fput", "fraction",
|
72
|
+
"fseek", "fstat", "ftell", "gerror", "getarg",
|
73
|
+
"get_command", "get_command_argument",
|
74
|
+
"get_environment_variable", "getcwd",
|
75
|
+
"getenv", "getgid", "getlog", "getpid",
|
76
|
+
"getuid", "gmtime", "hostnm", "huge", "iabs",
|
77
|
+
"iachar", "iand", "iargc", "ibclr", "ibits",
|
78
|
+
"ibset", "ichar", "idate", "idim", "idint",
|
79
|
+
"idnint", "ieor", "ierrno", "ifix", "imag",
|
80
|
+
"imagpart", "index", "int", "ior", "irand",
|
81
|
+
"isatty", "ishft", "ishftc", "isign",
|
82
|
+
"iso_c_binding", "is_iostat_end", "is_iostat_eor",
|
83
|
+
"itime", "kill", "kind", "lbound", "len", "len_trim",
|
84
|
+
"lge", "lgt", "link", "lle", "llt", "lnblnk", "loc",
|
85
|
+
"log", "logical", "long", "lshift", "lstat", "ltime",
|
86
|
+
"matmul", "max", "maxexponent", "maxloc", "maxval",
|
87
|
+
"mclock", "merge", "move_alloc", "min", "minexponent",
|
88
|
+
"minloc", "minval", "mod", "modulo", "mvbits",
|
89
|
+
"nearest", "new_line", "nint", "not", "or", "pack",
|
90
|
+
"perror", "precision", "present", "product", "radix",
|
91
|
+
"rand", "random_number", "random_seed", "range",
|
92
|
+
"real", "realpart", "rename", "repeat", "reshape",
|
93
|
+
"rrspacing", "rshift", "same_type_as", "scale",
|
94
|
+
"scan", "second", "selected_int_kind",
|
95
|
+
"selected_real_kind", "set_exponent", "shape",
|
96
|
+
"short", "sign", "signal", "sinh", "sin", "sleep",
|
97
|
+
"sngl", "spacing", "spread", "sqrt", "srand", "stat",
|
98
|
+
"sum", "symlnk", "system", "system_clock", "tan",
|
99
|
+
"tanh", "time", "tiny", "transfer", "transpose",
|
100
|
+
"trim", "ttynam", "ubound", "umask", "unlink",
|
101
|
+
"unpack", "verify", "xor", "zabs", "zcos", "zexp",
|
102
|
+
"zlog", "zsin", "zsqrt"]);
|
103
|
+
|
104
|
+
var dataTypes = words(["c_bool", "c_char", "c_double", "c_double_complex",
|
105
|
+
"c_float", "c_float_complex", "c_funptr", "c_int",
|
106
|
+
"c_int16_t", "c_int32_t", "c_int64_t", "c_int8_t",
|
107
|
+
"c_int_fast16_t", "c_int_fast32_t", "c_int_fast64_t",
|
108
|
+
"c_int_fast8_t", "c_int_least16_t", "c_int_least32_t",
|
109
|
+
"c_int_least64_t", "c_int_least8_t", "c_intmax_t",
|
110
|
+
"c_intptr_t", "c_long", "c_long_double",
|
111
|
+
"c_long_double_complex", "c_long_long", "c_ptr",
|
112
|
+
"c_short", "c_signed_char", "c_size_t", "character",
|
113
|
+
"complex", "double", "integer", "logical", "real"]);
|
114
|
+
var isOperatorChar = /[+\-*&=<>\/\:]/;
|
115
|
+
var litOperator = new RegExp("(\.and\.|\.or\.|\.eq\.|\.lt\.|\.le\.|\.gt\.|\.ge\.|\.ne\.|\.not\.|\.eqv\.|\.neqv\.)", "i");
|
116
|
+
|
117
|
+
function tokenBase(stream, state) {
|
118
|
+
|
119
|
+
if (stream.match(litOperator)){
|
120
|
+
return 'operator';
|
121
|
+
}
|
122
|
+
|
123
|
+
var ch = stream.next();
|
124
|
+
if (ch == "!") {
|
125
|
+
stream.skipToEnd();
|
126
|
+
return "comment";
|
127
|
+
}
|
128
|
+
if (ch == '"' || ch == "'") {
|
129
|
+
state.tokenize = tokenString(ch);
|
130
|
+
return state.tokenize(stream, state);
|
131
|
+
}
|
132
|
+
if (/[\[\]\(\),]/.test(ch)) {
|
133
|
+
return null;
|
134
|
+
}
|
135
|
+
if (/\d/.test(ch)) {
|
136
|
+
stream.eatWhile(/[\w\.]/);
|
137
|
+
return "number";
|
138
|
+
}
|
139
|
+
if (isOperatorChar.test(ch)) {
|
140
|
+
stream.eatWhile(isOperatorChar);
|
141
|
+
return "operator";
|
142
|
+
}
|
143
|
+
stream.eatWhile(/[\w\$_]/);
|
144
|
+
var word = stream.current().toLowerCase();
|
145
|
+
|
146
|
+
if (keywords.hasOwnProperty(word)){
|
147
|
+
return 'keyword';
|
148
|
+
}
|
149
|
+
if (builtins.hasOwnProperty(word) || dataTypes.hasOwnProperty(word)) {
|
150
|
+
return 'builtin';
|
151
|
+
}
|
152
|
+
return "variable";
|
153
|
+
}
|
154
|
+
|
155
|
+
function tokenString(quote) {
|
156
|
+
return function(stream, state) {
|
157
|
+
var escaped = false, next, end = false;
|
158
|
+
while ((next = stream.next()) != null) {
|
159
|
+
if (next == quote && !escaped) {
|
160
|
+
end = true;
|
161
|
+
break;
|
162
|
+
}
|
163
|
+
escaped = !escaped && next == "\\";
|
164
|
+
}
|
165
|
+
if (end || !escaped) state.tokenize = null;
|
166
|
+
return "string";
|
167
|
+
};
|
168
|
+
}
|
169
|
+
|
170
|
+
// Interface
|
171
|
+
|
172
|
+
return {
|
173
|
+
startState: function() {
|
174
|
+
return {tokenize: null};
|
175
|
+
},
|
176
|
+
|
177
|
+
token: function(stream, state) {
|
178
|
+
if (stream.eatSpace()) return null;
|
179
|
+
var style = (state.tokenize || tokenBase)(stream, state);
|
180
|
+
if (style == "comment" || style == "meta") return style;
|
181
|
+
return style;
|
182
|
+
}
|
183
|
+
};
|
184
|
+
});
|
185
|
+
|
186
|
+
CodeMirror.defineMIME("text/x-fortran", "fortran");
|
187
|
+
|
188
|
+
});
|