devver-ultraviolet 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +25 -0
- data/Manifest.txt +233 -0
- data/README.txt +52 -0
- data/bin/theme2latexrender +122 -0
- data/bin/theme2xhtmlrender +156 -0
- data/bin/uv +140 -0
- data/lib/uv.rb +94 -0
- data/lib/uv/render_processor.rb +146 -0
- data/lib/uv/utility.rb +67 -0
- data/render/latex/active4d.render +132 -0
- data/render/latex/all_hallows_eve.render +96 -0
- data/render/latex/amy.render +171 -0
- data/render/latex/blackboard.render +111 -0
- data/render/latex/brilliance_black.render +552 -0
- data/render/latex/brilliance_dull.render +561 -0
- data/render/latex/cobalt.render +162 -0
- data/render/latex/dawn.render +126 -0
- data/render/latex/eiffel.render +132 -0
- data/render/latex/espresso_libre.render +123 -0
- data/render/latex/idle.render +93 -0
- data/render/latex/iplastic.render +99 -0
- data/render/latex/lazy.render +96 -0
- data/render/latex/mac_classic.render +135 -0
- data/render/latex/magicwb_amiga.render +117 -0
- data/render/latex/pastels_on_dark.render +204 -0
- data/render/latex/slush_poppies.render +123 -0
- data/render/latex/spacecadet.render +81 -0
- data/render/latex/sunburst.render +186 -0
- data/render/latex/twilight.render +153 -0
- data/render/latex/zenburnesque.render +126 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +140 -0
- data/render/xhtml/all_hallows_eve.render +104 -0
- data/render/xhtml/amy.render +179 -0
- data/render/xhtml/blackboard.render +119 -0
- data/render/xhtml/brilliance_black.render +560 -0
- data/render/xhtml/brilliance_dull.render +569 -0
- data/render/xhtml/cobalt.render +170 -0
- data/render/xhtml/dawn.render +134 -0
- data/render/xhtml/eiffel.render +140 -0
- data/render/xhtml/espresso_libre.render +131 -0
- data/render/xhtml/files/css/active4d.css +114 -0
- data/render/xhtml/files/css/all_hallows_eve.css +72 -0
- data/render/xhtml/files/css/amy.css +147 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +605 -0
- data/render/xhtml/files/css/brilliance_dull.css +599 -0
- data/render/xhtml/files/css/cobalt.css +149 -0
- data/render/xhtml/files/css/dawn.css +121 -0
- data/render/xhtml/files/css/eiffel.css +121 -0
- data/render/xhtml/files/css/espresso_libre.css +109 -0
- data/render/xhtml/files/css/idle.css +62 -0
- data/render/xhtml/files/css/iplastic.css +80 -0
- data/render/xhtml/files/css/lazy.css +73 -0
- data/render/xhtml/files/css/mac_classic.css +123 -0
- data/render/xhtml/files/css/magicwb_amiga.css +104 -0
- data/render/xhtml/files/css/pastels_on_dark.css +188 -0
- data/render/xhtml/files/css/slush_poppies.css +85 -0
- data/render/xhtml/files/css/spacecadet.css +51 -0
- data/render/xhtml/files/css/sunburst.css +180 -0
- data/render/xhtml/files/css/twilight.css +137 -0
- data/render/xhtml/files/css/zenburnesque.css +91 -0
- data/render/xhtml/idle.render +101 -0
- data/render/xhtml/iplastic.render +107 -0
- data/render/xhtml/lazy.render +104 -0
- data/render/xhtml/mac_classic.render +143 -0
- data/render/xhtml/magicwb_amiga.render +125 -0
- data/render/xhtml/pastels_on_dark.render +212 -0
- data/render/xhtml/slush_poppies.render +131 -0
- data/render/xhtml/spacecadet.render +89 -0
- data/render/xhtml/sunburst.render +194 -0
- data/render/xhtml/twilight.render +161 -0
- data/render/xhtml/zenburnesque.render +134 -0
- data/syntax/actionscript.syntax +97 -0
- data/syntax/active4d.syntax +276 -0
- data/syntax/active4d_html.syntax +311 -0
- data/syntax/active4d_ini.syntax +50 -0
- data/syntax/active4d_library.syntax +21 -0
- data/syntax/ada.syntax +33 -0
- data/syntax/antlr.syntax +151 -0
- data/syntax/apache.syntax +191 -0
- data/syntax/applescript.syntax +384 -0
- data/syntax/asp.syntax +70 -0
- data/syntax/asp_vb.net.syntax +129 -0
- data/syntax/bibtex.syntax +151 -0
- data/syntax/blog_html.syntax +41 -0
- data/syntax/blog_markdown.syntax +42 -0
- data/syntax/blog_text.syntax +27 -0
- data/syntax/blog_textile.syntax +27 -0
- data/syntax/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/cm.syntax +32 -0
- data/syntax/coldfusion.syntax +119 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +195 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +142 -0
- data/syntax/diff.syntax +81 -0
- data/syntax/dokuwiki.syntax +204 -0
- data/syntax/dot.syntax +47 -0
- data/syntax/doxygen.syntax +43 -0
- data/syntax/dylan.syntax +62 -0
- data/syntax/eiffel.syntax +78 -0
- data/syntax/erlang.syntax +922 -0
- data/syntax/f-script.syntax +80 -0
- data/syntax/fortran.syntax +141 -0
- data/syntax/fxscript.syntax +142 -0
- data/syntax/greasemonkey.syntax +34 -0
- data/syntax/gri.syntax +83 -0
- data/syntax/groovy.syntax +191 -0
- data/syntax/gtd.syntax +22 -0
- data/syntax/gtdalt.syntax +143 -0
- data/syntax/haml.syntax +88 -0
- data/syntax/haskell.syntax +88 -0
- data/syntax/html-asp.syntax +27 -0
- data/syntax/html.syntax +362 -0
- data/syntax/html_django.syntax +36 -0
- data/syntax/html_for_asp.net.syntax +424 -0
- data/syntax/html_mason.syntax +119 -0
- data/syntax/html_rails.syntax +40 -0
- data/syntax/html_tcl.syntax +26 -0
- data/syntax/icalendar.syntax +32 -0
- data/syntax/inform.syntax +48 -0
- data/syntax/ini.syntax +55 -0
- data/syntax/installer_distribution_script.syntax +77 -0
- data/syntax/io.syntax +81 -0
- data/syntax/java.syntax +211 -0
- data/syntax/javaproperties.syntax +20 -0
- data/syntax/javascript.syntax +256 -0
- data/syntax/javascript_+_prototype.syntax +72 -0
- data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
- data/syntax/jquery_javascript.syntax +114 -0
- data/syntax/json.syntax +136 -0
- data/syntax/languagedefinition.syntax +708 -0
- data/syntax/latex.syntax +566 -0
- data/syntax/latex_beamer.syntax +41 -0
- data/syntax/latex_log.syntax +50 -0
- data/syntax/latex_memoir.syntax +64 -0
- data/syntax/lexflex.syntax +219 -0
- data/syntax/lighttpd.syntax +54 -0
- data/syntax/lilypond.syntax +492 -0
- data/syntax/lisp.syntax +61 -0
- data/syntax/literate_haskell.syntax +24 -0
- data/syntax/logo.syntax +29 -0
- data/syntax/logtalk.syntax +152 -0
- data/syntax/lua.syntax +86 -0
- data/syntax/m.syntax +142 -0
- data/syntax/macports_portfile.syntax +163 -0
- data/syntax/makefile.syntax +36 -0
- data/syntax/man.syntax +17 -0
- data/syntax/mediawiki.syntax +567 -0
- data/syntax/mips.syntax +66 -0
- data/syntax/mod_perl.syntax +50 -0
- data/syntax/modula-3.syntax +47 -0
- data/syntax/moinmoin.syntax +189 -0
- data/syntax/mootools.syntax +572 -0
- data/syntax/movable_type.syntax +162 -0
- data/syntax/multimarkdown.syntax +39 -0
- data/syntax/objective-c++.syntax +18 -0
- data/syntax/objective-c.syntax +233 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1115 -0
- data/syntax/plain_text.syntax +32 -0
- data/syntax/postscript.syntax +114 -0
- data/syntax/processing.syntax +106 -0
- data/syntax/prolog.syntax +40 -0
- data/syntax/property_list.syntax +635 -0
- data/syntax/python.syntax +868 -0
- data/syntax/python_django.syntax +21 -0
- data/syntax/qmake_project.syntax +114 -0
- data/syntax/qt_c++.syntax +26 -0
- data/syntax/quake3_config.syntax +32 -0
- data/syntax/r.syntax +81 -0
- data/syntax/r_console.syntax +16 -0
- data/syntax/ragel.syntax +201 -0
- data/syntax/rd_r_documentation.syntax +91 -0
- data/syntax/regexp.syntax +50 -0
- data/syntax/release_notes.syntax +46 -0
- data/syntax/remind.syntax +253 -0
- data/syntax/restructuredtext.syntax +250 -0
- data/syntax/rez.syntax +80 -0
- data/syntax/ruby.syntax +1035 -0
- data/syntax/ruby_experimental.syntax +145 -0
- data/syntax/ruby_on_rails.syntax +88 -0
- data/syntax/s5.syntax +69 -0
- data/syntax/scheme.syntax +347 -0
- data/syntax/scilab.syntax +41 -0
- data/syntax/setext.syntax +147 -0
- data/syntax/shell-unix-generic.syntax +384 -0
- data/syntax/slate.syntax +149 -0
- data/syntax/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +121 -0
- data/syntax/strings_file.syntax +39 -0
- data/syntax/subversion_commit_message.syntax +36 -0
- data/syntax/sweave.syntax +84 -0
- data/syntax/swig.syntax +57 -0
- data/syntax/tcl.syntax +152 -0
- data/syntax/template_toolkit.syntax +121 -0
- data/syntax/tex.syntax +86 -0
- data/syntax/tex_math.syntax +49 -0
- data/syntax/textile.syntax +215 -0
- data/syntax/tsv.syntax +50 -0
- data/syntax/twiki.syntax +241 -0
- data/syntax/txt2tags.syntax +79 -0
- data/syntax/vectorscript.syntax +57 -0
- data/syntax/xhtml_1.0.syntax +4027 -0
- data/syntax/xml.syntax +180 -0
- data/syntax/xml_strict.syntax +92 -0
- data/syntax/xsl.syntax +60 -0
- data/syntax/yaml.syntax +160 -0
- data/syntax/yui_javascript.syntax +176 -0
- metadata +310 -0
data/syntax/tex.syntax
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
---
|
2
|
+
name: TeX
|
3
|
+
fileTypes:
|
4
|
+
- sty
|
5
|
+
- cls
|
6
|
+
scopeName: text.tex
|
7
|
+
uuid: 6BC8DE6F-9360-4C7E-AC3C-971385945346
|
8
|
+
foldingStartMarker: /\*\*|\{\s*$
|
9
|
+
patterns:
|
10
|
+
- name: keyword.control.tex
|
11
|
+
captures:
|
12
|
+
"1":
|
13
|
+
name: punctuation.definition.keyword.tex
|
14
|
+
match: (\\)(backmatter|else|fi|frontmatter|ftrue|mainmatter|if(case|cat|dim|eof|false|hbox|hmode|inner|mmode|num|odd|undefined|vbox|vmode|void|x)?)\b
|
15
|
+
- name: meta.catcode.tex
|
16
|
+
captures:
|
17
|
+
"1":
|
18
|
+
name: keyword.control.catcode.tex
|
19
|
+
"2":
|
20
|
+
name: punctuation.definition.keyword.tex
|
21
|
+
"3":
|
22
|
+
name: punctuation.separator.key-value.tex
|
23
|
+
"4":
|
24
|
+
name: constant.numeric.category.tex
|
25
|
+
match: ((\\)catcode)`(?:\\)?.(=)(\d+)
|
26
|
+
- name: comment.line.percentage.semicolon.texshop.tex
|
27
|
+
captures:
|
28
|
+
"1":
|
29
|
+
name: punctuation.definition.comment.tex
|
30
|
+
match: (%:).*$\n?
|
31
|
+
- name: comment.line.percentage.tex
|
32
|
+
captures:
|
33
|
+
"1":
|
34
|
+
name: punctuation.definition.comment.tex
|
35
|
+
match: (%).*$\n?
|
36
|
+
- name: meta.group.braces.tex
|
37
|
+
captures:
|
38
|
+
"0":
|
39
|
+
name: punctuation.section.group.tex
|
40
|
+
begin: \{
|
41
|
+
end: \}
|
42
|
+
patterns:
|
43
|
+
- include: $base
|
44
|
+
- name: punctuation.definition.brackets.tex
|
45
|
+
match: "[\\[\\]]"
|
46
|
+
- name: string.other.math.block.tex
|
47
|
+
endCaptures:
|
48
|
+
"0":
|
49
|
+
name: punctuation.definition.string.end.tex
|
50
|
+
begin: \$\$
|
51
|
+
beginCaptures:
|
52
|
+
"0":
|
53
|
+
name: punctuation.definition.string.begin.tex
|
54
|
+
end: \$\$
|
55
|
+
patterns:
|
56
|
+
- include: text.tex.math
|
57
|
+
- include: $self
|
58
|
+
- name: constant.character.newline.tex
|
59
|
+
match: \\\\
|
60
|
+
- name: string.other.math.tex
|
61
|
+
endCaptures:
|
62
|
+
"0":
|
63
|
+
name: punctuation.definition.string.end.tex
|
64
|
+
begin: \$
|
65
|
+
beginCaptures:
|
66
|
+
"0":
|
67
|
+
name: punctuation.definition.string.begin.tex
|
68
|
+
end: \$
|
69
|
+
patterns:
|
70
|
+
- name: constant.character.escape.tex
|
71
|
+
match: \\\$
|
72
|
+
- include: text.tex.math
|
73
|
+
- include: $self
|
74
|
+
- name: support.function.general.tex
|
75
|
+
captures:
|
76
|
+
"1":
|
77
|
+
name: punctuation.definition.function.tex
|
78
|
+
match: (\\)[A-Za-z@]+
|
79
|
+
- name: constant.character.escape.tex
|
80
|
+
captures:
|
81
|
+
"1":
|
82
|
+
name: punctuation.definition.keyword.tex
|
83
|
+
match: (\\)[^a-zA-Z@]
|
84
|
+
- name: meta.placeholder.greek.tex
|
85
|
+
match: "\xC2\xABpress a-z and space for greek letter\xC2\xBB[a-zA-Z]*"
|
86
|
+
foldingStopMarker: \*\*/|^\s*\}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
name: TeX Math
|
3
|
+
fileTypes: []
|
4
|
+
|
5
|
+
scopeName: text.tex.math
|
6
|
+
uuid: 027D6AF4-E9D3-4250-82A1-8A42EEFE4F76
|
7
|
+
foldingStartMarker: /\*\*|\{\s*$
|
8
|
+
patterns:
|
9
|
+
- name: constant.character.math.tex
|
10
|
+
captures:
|
11
|
+
"1":
|
12
|
+
name: punctuation.definition.constant.math.tex
|
13
|
+
match: (\\)(s(s(earrow|warrow|lash)|h(ort(downarrow|uparrow|parallel|leftarrow|rightarrow|mid)|arp)|tar|i(gma|m(eq)?)|u(cc(sim|n(sim|approx)|curlyeq|eq|approx)?|pset(neq(q)?|plus(eq)?|eq(q)?)?|rd|m|bset(neq(q)?|plus(eq)?|eq(q)?)?)|p(hericalangle|adesuit)|e(tminus|arrow)|q(su(pset(eq)?|bset(eq)?)|c(up|ap)|uare)|warrow|m(ile|all(s(etminus|mile)|frown)))|h(slash|ook(leftarrow|rightarrow)|eartsuit|bar)|R(sh|ightarrow|e|bag)|Gam(e|ma)|n(s(hort(parallel|mid)|im|u(cc(eq)?|pseteq(q)?|bseteq))|Rightarrow|n(earrow|warrow)|cong|triangle(left(eq(slant)?)?|right(eq(slant)?)?)|i(plus)?|u|p(lus|arallel|rec(eq)?)|e(q|arrow|g|xists)|v(dash|Dash)|warrow|le(ss|q(slant|q)?|ft(arrow|rightarrow))|a(tural|bla)|VDash|rightarrow|g(tr|eq(slant|q)?)|mid|Left(arrow|rightarrow))|c(hi|irc(eq|le(d(circ|S|dash|ast)|arrow(left|right)))?|o(ng|prod|lon|mplement)|dot(s|p)?|u(p|r(vearrow(left|right)|ly(eq(succ|prec)|vee(downarrow|uparrow)?|wedge(downarrow|uparrow)?)))|enterdot|lubsuit|ap)|Xi|Maps(to(char)?|from(char)?)|B(ox|umpeq|bbk)|t(h(ick(sim|approx)|e(ta|refore))|imes|op|wohead(leftarrow|rightarrow)|a(u|lloblong)|riangle(down|q|left(eq(slant)?)?|right(eq(slant)?)?)?)|i(n(t(er(cal|leave))?|plus|fty)?|ota|math)|S(igma|u(pset|bset))|zeta|o(slash|times|int|dot|plus|vee|wedge|lessthan|greaterthan|m(inus|ega)|b(slash|long|ar))|d(i(v(ideontimes)?|a(g(down|up)|mond(suit)?)|gamma)|o(t(plus|eq(dot)?)|ublebarwedge|wn(harpoon(left|right)|downarrows|arrow))|d(ots|agger)|elta|a(sh(v|leftarrow|rightarrow)|leth|gger))|Y(down|up|left|right)|C(up|ap)|u(n(lhd|rhd)|p(silon|harpoon(left|right)|downarrow|uparrows|lus|arrow)|lcorner|rcorner)|jmath|Theta|Im|p(si|hi|i(tchfork)?|erp|ar(tial|allel)|r(ime|o(d|pto)|ec(sim|n(sim|approx)|curlyeq|eq|approx)?)|m)|e(t(h|a)|psilon|q(slant(less|gtr)|circ|uiv)|ll|xists|mptyset)|Omega|D(iamond|ownarrow|elta)|v(d(ots|ash)|ee(bar)?|Dash|ar(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|curly(vee|wedge)|t(heta|imes|riangle(left|right)?)|o(slash|circle|times|dot|plus|vee|wedge|lessthan|ast|greaterthan|minus|b(slash|ar))|p(hi|i|ropto)|epsilon|kappa|rho|bigcirc))|kappa|Up(silon|downarrow|arrow)|Join|f(orall|lat|a(t(s(emi|lash)|bslash)|llingdotseq)|rown)|P(si|hi|i)|w(p|edge|r)|l(hd|n(sim|eq(q)?|approx)|ceil|times|ightning|o(ng(left(arrow|rightarrow)|rightarrow|maps(to|from))|zenge|oparrow(left|right))|dot(s|p)|e(ss(sim|dot|eq(qgtr|gtr)|approx|gtr)|q(slant|q)?|ft(slice|harpoon(down|up)|threetimes|leftarrows|arrow(t(ail|riangle))?|right(squigarrow|harpoons|arrow(s|triangle|eq)?))|adsto)|vertneqq|floor|l(c(orner|eil)|floor|l|bracket)?|a(ngle|mbda)|rcorner|bag)|a(s(ymp|t)|ngle|pprox(eq)?|l(pha|eph)|rrownot|malg)|V(dash|vdash)|r(h(o|d)|ceil|times|i(singdotseq|ght(s(quigarrow|lice)|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(t(ail|riangle))?|rightarrows))|floor|angle|r(ceil|parenthesis|floor|bracket)|bag)|g(n(sim|eq(q)?|approx)|tr(sim|dot|eq(qless|less)|less|approx)|imel|eq(slant|q)?|vertneqq|amma|g(g)?)|Finv|xi|m(ho|i(nuso|d)|o(o|dels)|u(ltimap)?|p|e(asuredangle|rge)|aps(to|from(char)?))|b(i(n(dnasrepma|ampersand)|g(s(tar|qc(up|ap))|nplus|c(irc|u(p|rly(vee|wedge))|ap)|triangle(down|up)|interleave|o(times|dot|plus)|uplus|parallel|vee|wedge|box))|o(t|wtie|x(slash|circle|times|dot|plus|empty|ast|minus|b(slash|ox|ar)))|u(llet|mpeq)|e(cause|t(h|ween|a))|lack(square|triangle(down|left|right)?|lozenge)|a(ck(s(im(eq)?|lash)|prime|epsilon)|r(o|wedge))|bslash)|L(sh|ong(left(arrow|rightarrow)|rightarrow|maps(to|from))|eft(arrow|rightarrow)|leftarrow|ambda|bag)|Arrownot)\b
|
14
|
+
- name: constant.character.math.tex
|
15
|
+
captures:
|
16
|
+
"1":
|
17
|
+
name: punctuation.definition.constant.math.tex
|
18
|
+
match: (\\)(sum|prod|coprod|int|oint|bigcap|bigcup|bigsqcup|bigvee|bigwedge|bigodot|bigotimes|bogoplus|biguplus)\b
|
19
|
+
- name: constant.other.math.tex
|
20
|
+
captures:
|
21
|
+
"1":
|
22
|
+
name: punctuation.definition.constant.math.tex
|
23
|
+
match: (\\)(arccos|arcsin|arctan|arg|cos|cosh|cot|coth|csc|deg|det|dim|exp|gcd|hom|inf|ker|lg|lim|liminf|limsup|ln|log|max|min|pr|sec|sin|sinh|sup|tan|tanh)\b
|
24
|
+
- name: meta.function.sexpr.math.tex
|
25
|
+
endCaptures:
|
26
|
+
"1":
|
27
|
+
name: punctuation.section.embedded.end.math.tex
|
28
|
+
begin: ((\\)Sexpr)(\{)
|
29
|
+
contentName: source.r.embedded.math.tex
|
30
|
+
beginCaptures:
|
31
|
+
"1":
|
32
|
+
name: support.function.sexpr.math.tex
|
33
|
+
"2":
|
34
|
+
name: punctuation.definition.function.math.tex
|
35
|
+
"3":
|
36
|
+
name: punctuation.section.embedded.begin.math.tex
|
37
|
+
end: (\})
|
38
|
+
patterns:
|
39
|
+
- include: source.r
|
40
|
+
- name: constant.other.general.math.tex
|
41
|
+
captures:
|
42
|
+
"1":
|
43
|
+
name: punctuation.definition.constant.math.tex
|
44
|
+
match: (\\)([^a-zA-Z]|[A-Za-z]+)(?=\b|\}|\]|\^|\_)
|
45
|
+
- name: constant.numeric.math.tex
|
46
|
+
match: (([0-9]*[\.][0-9]+)|[0-9]+)
|
47
|
+
- name: meta.placeholder.greek.math.tex
|
48
|
+
match: "\xC2\xABpress a-z and space for greek letter\xC2\xBB[a-zA-Z]*"
|
49
|
+
foldingStopMarker: \*\*/|^\s*\}
|
@@ -0,0 +1,215 @@
|
|
1
|
+
---
|
2
|
+
name: Textile
|
3
|
+
fileTypes:
|
4
|
+
- textile
|
5
|
+
firstLineMatch: textile
|
6
|
+
scopeName: text.html.textile
|
7
|
+
repository:
|
8
|
+
inline:
|
9
|
+
patterns:
|
10
|
+
- name: text.html.textile
|
11
|
+
match: "&(?![A-Za-z0-9]+;)"
|
12
|
+
comment: "& is handled automagically by textile, so we match it to avoid text.html.basic from flagging it"
|
13
|
+
- name: markup.list.unnumbered.textile
|
14
|
+
captures:
|
15
|
+
"1":
|
16
|
+
name: entity.name.type.textile
|
17
|
+
match: ^\*+(\([^)]*\)|{[^}]*})*(\s+|$)
|
18
|
+
- name: markup.list.numbered.textile
|
19
|
+
captures:
|
20
|
+
"1":
|
21
|
+
name: entity.name.type.textile
|
22
|
+
match: ^#+(\([^)]*\)|{[^}]*})*\s+
|
23
|
+
- name: meta.link.reference.textile
|
24
|
+
captures:
|
25
|
+
"1":
|
26
|
+
name: string.other.link.title.textile
|
27
|
+
"2":
|
28
|
+
name: string.other.link.description.title.textile
|
29
|
+
"3":
|
30
|
+
name: constant.other.reference.link.textile
|
31
|
+
match: "(?x)\n\
|
32
|
+
\t\t\t\t\t\t\t\t\"\t\t\t\t\t\t\t\t# Start name, etc\n\
|
33
|
+
\t\t\t\t\t\t\t\t\t(?:\t\t\t\t\t\t\t# Attributes\n\
|
34
|
+
\t\t\t\t\t\t\t\t\t\t# I swear, this is how the language is defined,\n\
|
35
|
+
\t\t\t\t\t\t\t\t\t\t# couldnt make it up if I tried.\n\
|
36
|
+
\t\t\t\t\t\t\t\t\t\t(?:\\([^)]+\\))?(?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?\n\
|
37
|
+
\t\t\t\t\t\t\t\t\t\t\t# Class, Style, Lang\n\
|
38
|
+
\t\t\t\t\t\t\t\t\t | (?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?(?:\\([^)]+\\))?\n\
|
39
|
+
\t\t\t\t\t\t\t\t\t\t\t# Style, Lang, Class\n\
|
40
|
+
\t\t\t\t\t\t\t\t\t | (?:\\[[^\\]]+\\])?(?:\\{[^}]+\\})?(?:\\([^)]+\\))?\n\
|
41
|
+
\t\t\t\t\t\t\t\t\t\t\t# Lang, Style, Class\n\
|
42
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
43
|
+
\t\t\t\t\t\t\t\t\t([^\"]+?)\t\t\t\t\t# Link name\n\
|
44
|
+
\t\t\t\t\t\t\t\t\t\\s?\t\t\t\t\t\t\t# Optional whitespace\n\
|
45
|
+
\t\t\t\t\t\t\t\t\t(?:\\(([^)]+?)\\))?\n\
|
46
|
+
\t\t\t\t\t\t\t\t\":\t\t\t\t\t\t\t\t# End name\n\
|
47
|
+
\t\t\t\t\t\t\t\t(\\w[-\\w_]*)\t\t\t\t\t\t# Linkref\n\
|
48
|
+
\t\t\t\t\t\t\t\t(?=[^\\w\\/;]*?(<|\\s|$))\t\t\t# Catch closing punctuation\n\
|
49
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t# and end of meta.link\n\
|
50
|
+
\t\t\t\t\t"
|
51
|
+
- name: meta.link.inline.textile
|
52
|
+
captures:
|
53
|
+
"1":
|
54
|
+
name: string.other.link.title.textile
|
55
|
+
"2":
|
56
|
+
name: string.other.link.description.title.textile
|
57
|
+
"3":
|
58
|
+
name: markup.underline.link.textile
|
59
|
+
match: "(?x)\n\
|
60
|
+
\t\t\t\t\t\t\t\t\"\t\t\t\t\t\t\t\t# Start name, etc\n\
|
61
|
+
\t\t\t\t\t\t\t\t\t(?:\t\t\t\t\t\t\t# Attributes\n\
|
62
|
+
\t\t\t\t\t\t\t\t\t\t# I swear, this is how the language is defined,\n\
|
63
|
+
\t\t\t\t\t\t\t\t\t\t# couldnt make it up if I tried.\n\
|
64
|
+
\t\t\t\t\t\t\t\t\t\t(?:\\([^)]+\\))?(?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?\n\
|
65
|
+
\t\t\t\t\t\t\t\t\t\t\t# Class, Style, Lang\n\
|
66
|
+
\t\t\t\t\t\t\t\t\t | (?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?(?:\\([^)]+\\))?\n\
|
67
|
+
\t\t\t\t\t\t\t\t\t\t\t# Style, Lang, Class\n\
|
68
|
+
\t\t\t\t\t\t\t\t\t | (?:\\[[^\\]]+\\])?(?:\\{[^}]+\\})?(?:\\([^)]+\\))?\n\
|
69
|
+
\t\t\t\t\t\t\t\t\t\t\t# Lang, Style, Class\n\
|
70
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
71
|
+
\t\t\t\t\t\t\t\t\t([^\"]+?)\t\t\t\t\t# Link name\n\
|
72
|
+
\t\t\t\t\t\t\t\t\t\\s?\t\t\t\t\t\t\t# Optional whitespace\n\
|
73
|
+
\t\t\t\t\t\t\t\t\t(?:\\(([^)]+?)\\))?\n\
|
74
|
+
\t\t\t\t\t\t\t\t\":\t\t\t\t\t\t\t\t# End Name\n\
|
75
|
+
\t\t\t\t\t\t\t\t(\\S*?(?:\\w|\\/|;))\t\t\t\t# URL\n\
|
76
|
+
\t\t\t\t\t\t\t\t(?=[^\\w\\/;]*?(<|\\s|$))\t\t\t# Catch closing punctuation\n\
|
77
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t# and end of meta.link\n\
|
78
|
+
\t\t\t\t\t"
|
79
|
+
- name: meta.image.inline.textile
|
80
|
+
captures:
|
81
|
+
"2":
|
82
|
+
name: markup.underline.link.image.textile
|
83
|
+
"3":
|
84
|
+
name: string.other.link.description.textile
|
85
|
+
"4":
|
86
|
+
name: markup.underline.link.textile
|
87
|
+
match: "(?x)\n\
|
88
|
+
\t\t\t\t\t\t\t\t\\!\t\t\t\t\t\t\t\t\t\t# Open image\n\
|
89
|
+
\t\t\t\t\t\t\t\t(\\<|\\=|\\>)?\t\t\t\t\t\t\t\t# Optional alignment\n\
|
90
|
+
\t\t\t\t\t\t\t\t(?:\t\t\t\t\t\t\t\t\t\t# Attributes\n\
|
91
|
+
\t\t\t\t\t\t\t\t\t# I swear, this is how the language is defined,\n\
|
92
|
+
\t\t\t\t\t\t\t\t\t# couldnt make it up if I tried.\n\
|
93
|
+
\t\t\t\t\t\t\t\t\t(?:\\([^)]+\\))?(?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?\n\
|
94
|
+
\t\t\t\t\t\t\t\t\t\t# Class, Style, Lang\n\
|
95
|
+
\t\t\t\t\t\t\t\t | (?:\\{[^}]+\\})?(?:\\[[^\\]]+\\])?(?:\\([^)]+\\))?\n\
|
96
|
+
\t\t\t\t\t\t\t\t\t\t# Style, Lang, Class\n\
|
97
|
+
\t\t\t\t\t\t\t\t | (?:\\[[^\\]]+\\])?(?:\\{[^}]+\\})?(?:\\([^)]+\\))?\n\
|
98
|
+
\t\t\t\t\t\t\t\t\t\t# Lang, Style, Class\n\
|
99
|
+
\t\t\t\t\t\t\t\t)?\n\
|
100
|
+
\t\t\t\t\t\t\t\t(?:\\.[ ])? \t\t\t\t\t# Optional\n\
|
101
|
+
\t\t\t\t\t\t\t\t([^\\s(!]+?) \t\t\t\t\t# Image URL\n\
|
102
|
+
\t\t\t\t\t\t\t\t\\s? \t\t\t\t\t\t# Optional space\n\
|
103
|
+
\t\t\t\t\t\t\t\t(?:\\(((?:[^\\(\\)]|\\([^\\)]+\\))+?)\\))? \t# Optional title\n\
|
104
|
+
\t\t\t\t\t\t\t\t\\!\t\t\t\t\t\t\t\t\t\t# Close image\n\
|
105
|
+
\t\t\t\t\t\t\t\t(?:\n\
|
106
|
+
\t\t\t\t\t\t\t\t\t:\n\
|
107
|
+
\t\t\t\t\t\t\t\t\t(\\S*?(?:\\w|\\/|;))\t\t\t\t\t# URL\n\
|
108
|
+
\t\t\t\t\t\t\t\t\t(?=[^\\w\\/;]*?(<|\\s|$))\t\t\t\t# Catch closing punctuation\n\
|
109
|
+
\t\t\t\t\t\t\t\t)?\n\
|
110
|
+
\t\t\t\t\t"
|
111
|
+
- name: markup.other.table.cell.textile
|
112
|
+
captures:
|
113
|
+
"1":
|
114
|
+
name: entity.name.type.textile
|
115
|
+
match: \|(\([^)]*\)|{[^}]*})*(\\\||.)+\|
|
116
|
+
- name: markup.bold.textile
|
117
|
+
captures:
|
118
|
+
"3":
|
119
|
+
name: entity.name.type.textile
|
120
|
+
match: \B(\*\*?)((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\1\B
|
121
|
+
- name: markup.deleted.textile
|
122
|
+
captures:
|
123
|
+
"2":
|
124
|
+
name: entity.name.type.textile
|
125
|
+
match: \B-((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)-\B
|
126
|
+
- name: markup.inserted.textile
|
127
|
+
captures:
|
128
|
+
"2":
|
129
|
+
name: entity.name.type.textile
|
130
|
+
match: \B\+((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\+\B
|
131
|
+
- name: markup.italic.textile
|
132
|
+
captures:
|
133
|
+
"2":
|
134
|
+
name: entity.name.type.textile
|
135
|
+
match: (?:\b|\s)_((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)_(?:\b|\s)
|
136
|
+
- name: markup.italic.phrasemodifiers.textile
|
137
|
+
captures:
|
138
|
+
"3":
|
139
|
+
name: entity.name.type.textile
|
140
|
+
match: \B([@\^~%]|\?\?)((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\1
|
141
|
+
- name: entity.name.tag.textile
|
142
|
+
match: (?<!w)\[[0-9+]\]
|
143
|
+
comment: Footnotes
|
144
|
+
uuid: 68F0B1A5-3274-4E85-8B3A-A481C5F5B194
|
145
|
+
patterns:
|
146
|
+
- name: markup.heading.textile
|
147
|
+
captures:
|
148
|
+
"1":
|
149
|
+
name: entity.name.tag.heading.textile
|
150
|
+
"3":
|
151
|
+
name: entity.name.type.textile
|
152
|
+
"4":
|
153
|
+
name: entity.name.tag.heading.textile
|
154
|
+
begin: (^h[1-6]([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)
|
155
|
+
end: ^$
|
156
|
+
patterns:
|
157
|
+
- include: "#inline"
|
158
|
+
- include: text.html.basic
|
159
|
+
- name: markup.quote.textile
|
160
|
+
captures:
|
161
|
+
"1":
|
162
|
+
name: entity.name.tag.blockquote.textile
|
163
|
+
"3":
|
164
|
+
name: entity.name.type.textile
|
165
|
+
"4":
|
166
|
+
name: entity.name.tag.blockquote.textile
|
167
|
+
begin: (^bq([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)
|
168
|
+
end: ^$
|
169
|
+
patterns:
|
170
|
+
- include: "#inline"
|
171
|
+
- include: text.html.basic
|
172
|
+
- name: markup.other.footnote.textile
|
173
|
+
captures:
|
174
|
+
"1":
|
175
|
+
name: entity.name.tag.footnote.textile
|
176
|
+
"3":
|
177
|
+
name: entity.name.type.textile
|
178
|
+
"4":
|
179
|
+
name: entity.name.tag.footnote.textile
|
180
|
+
begin: (^fn[0-9]+([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)
|
181
|
+
end: ^$
|
182
|
+
patterns:
|
183
|
+
- include: "#inline"
|
184
|
+
- include: text.html.basic
|
185
|
+
- name: markup.other.table.textile
|
186
|
+
captures:
|
187
|
+
"1":
|
188
|
+
name: entity.name.tag.footnote.textile
|
189
|
+
"3":
|
190
|
+
name: entity.name.type.textile
|
191
|
+
"4":
|
192
|
+
name: entity.name.tag.footnote.textile
|
193
|
+
begin: (^table([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)
|
194
|
+
end: ^$
|
195
|
+
patterns:
|
196
|
+
- include: "#inline"
|
197
|
+
- include: text.html.basic
|
198
|
+
- name: meta.paragraph.textile
|
199
|
+
begin: ^(?=\S)
|
200
|
+
end: ^$
|
201
|
+
patterns:
|
202
|
+
- name: entity.name.section.paragraph.textile
|
203
|
+
captures:
|
204
|
+
"1":
|
205
|
+
name: entity.name.tag.paragraph.textile
|
206
|
+
"3":
|
207
|
+
name: entity.name.type.textile
|
208
|
+
"4":
|
209
|
+
name: entity.name.tag.paragraph.textile
|
210
|
+
match: (^p([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)
|
211
|
+
- include: "#inline"
|
212
|
+
- include: text.html.basic
|
213
|
+
- include: text.html.basic
|
214
|
+
comment: Since html is valid in Textile include the html patterns
|
215
|
+
keyEquivalent: ^~T
|
data/syntax/tsv.syntax
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
name: TSV
|
3
|
+
fileTypes:
|
4
|
+
- tsv
|
5
|
+
scopeName: text.tabular.tsv
|
6
|
+
repository:
|
7
|
+
row:
|
8
|
+
name: meta.tabular.row.tsv
|
9
|
+
begin: ^(?!$)
|
10
|
+
end: $
|
11
|
+
patterns:
|
12
|
+
- include: "#field"
|
13
|
+
field:
|
14
|
+
patterns:
|
15
|
+
- endCaptures:
|
16
|
+
"1":
|
17
|
+
name: punctuation.separator.tabular.field.tsv
|
18
|
+
begin: (:^|(?<=\t))(?!$|\t)
|
19
|
+
contentName: meta.tabular.field.tsv
|
20
|
+
end: $|(\t)
|
21
|
+
- name: punctuation.separator.tabular.field.tsv
|
22
|
+
match: \t
|
23
|
+
header:
|
24
|
+
name: meta.tabular.row.header.tsv
|
25
|
+
begin: ^(?!$)
|
26
|
+
end: $
|
27
|
+
patterns:
|
28
|
+
- include: "#field"
|
29
|
+
table:
|
30
|
+
name: meta.tabular.table.tsv
|
31
|
+
begin: ^
|
32
|
+
end: ^$not possible$^
|
33
|
+
patterns:
|
34
|
+
- include: "#header"
|
35
|
+
- begin: (\n)
|
36
|
+
beginCaptures:
|
37
|
+
"1":
|
38
|
+
name: punctuation.separator.table.row.tsv
|
39
|
+
end: ^$not possible$^
|
40
|
+
patterns:
|
41
|
+
- include: "#row"
|
42
|
+
- name: punctuation.separator.table.row.tsv
|
43
|
+
match: \n
|
44
|
+
comment: "\n\
|
45
|
+
\t\t\t\t\t\teverything after the first row is not a header\n\
|
46
|
+
\t\t\t\t\t"
|
47
|
+
uuid: 7D87F38B-A972-4F61-B9C0-7D6D15EEED38
|
48
|
+
patterns:
|
49
|
+
- include: "#table"
|
50
|
+
keyEquivalent: ^~T
|
data/syntax/twiki.syntax
ADDED
@@ -0,0 +1,241 @@
|
|
1
|
+
---
|
2
|
+
name: Twiki
|
3
|
+
scopeName: text.html.twiki
|
4
|
+
repository:
|
5
|
+
list-paragraph:
|
6
|
+
patterns:
|
7
|
+
- name: markup.list.unnumbered.paragraph
|
8
|
+
begin: \G\s+\S
|
9
|
+
end: ^\s*$
|
10
|
+
patterns:
|
11
|
+
- include: "#inline"
|
12
|
+
- include: text.html.basic
|
13
|
+
inline:
|
14
|
+
patterns:
|
15
|
+
- name: markup.bold.twiki
|
16
|
+
captures:
|
17
|
+
"1":
|
18
|
+
name: punctuation.definition.bold.twiki
|
19
|
+
"2":
|
20
|
+
name: punctuation.definition.bold.twiki
|
21
|
+
match: ([\*])[\s\w :.\?']*([\*])
|
22
|
+
- captures:
|
23
|
+
"6":
|
24
|
+
name: punctuation.definition.italic.twiki
|
25
|
+
"1":
|
26
|
+
name: markup.bold.twiki
|
27
|
+
"2":
|
28
|
+
name: markup.italic.twiki
|
29
|
+
"3":
|
30
|
+
name: punctuation.definition.bold.twiki
|
31
|
+
"4":
|
32
|
+
name: punctuation.definition.italic.twiki
|
33
|
+
"5":
|
34
|
+
name: punctuation.definition.bold.twiki
|
35
|
+
match: ((((__))[\s\w :.\?']*((__))))
|
36
|
+
- name: markup.italic.twiki
|
37
|
+
captures:
|
38
|
+
"1":
|
39
|
+
name: punctuation.definition.italic.twiki
|
40
|
+
"2":
|
41
|
+
name: punctuation.definition.italic.twiki
|
42
|
+
match: \b(_)[\s\w :.\?']*(_)\b
|
43
|
+
- captures:
|
44
|
+
"6":
|
45
|
+
name: punctuation.definition.raw.fixed.twiki
|
46
|
+
"1":
|
47
|
+
name: markup.bold.twiki
|
48
|
+
"2":
|
49
|
+
name: markup.raw.fixed.twiki
|
50
|
+
"3":
|
51
|
+
name: punctuation.definition.bold.twiki
|
52
|
+
"4":
|
53
|
+
name: punctuation.definition.raw.fixed.twiki
|
54
|
+
"5":
|
55
|
+
name: punctuation.definition.bold.twiki
|
56
|
+
match: ((((\=\=))[\s\w :.\?']*((\=\=))))
|
57
|
+
- name: markup.raw.fixed.twiki
|
58
|
+
captures:
|
59
|
+
"1":
|
60
|
+
name: punctuation.definition.raw.fixed.twiki
|
61
|
+
"2":
|
62
|
+
name: punctuation.definition.raw.fixed.twiki
|
63
|
+
match: (\=)[\s\w :.\?']*(\=)
|
64
|
+
- name: variable.other.twiki
|
65
|
+
captures:
|
66
|
+
"1":
|
67
|
+
name: punctuation.definition.variable.twiki
|
68
|
+
"3":
|
69
|
+
name: punctuation.definition.variable.twiki
|
70
|
+
match: (%)([A-Z0-9]+)(%)
|
71
|
+
- name: constant.character.entity.html
|
72
|
+
captures:
|
73
|
+
"1":
|
74
|
+
name: punctuation.definition.constant.twiki
|
75
|
+
"3":
|
76
|
+
name: punctuation.definition.constant.twiki
|
77
|
+
match: (&)([a-zA-Z0-9]+|#[0-9]+|#x[0-9a-fA-F]+)(;)
|
78
|
+
- name: meta.link.inline
|
79
|
+
captures:
|
80
|
+
"6":
|
81
|
+
name: punctuation.definition.link.twiki
|
82
|
+
"1":
|
83
|
+
name: punctuation.definition.link.twiki
|
84
|
+
"2":
|
85
|
+
name: markup.underline.link.twiki
|
86
|
+
"3":
|
87
|
+
name: punctuation.definition.link.twiki
|
88
|
+
"4":
|
89
|
+
name: punctuation.definition.link.twiki
|
90
|
+
"5":
|
91
|
+
name: string.other.link.title.twiki
|
92
|
+
match: (\[)([^]]*)(\]) *(\[)(.*?)(\])
|
93
|
+
numlist-paragraph:
|
94
|
+
patterns:
|
95
|
+
- name: markup.list.numbered.paragraph
|
96
|
+
begin: \G\s+\S
|
97
|
+
end: ^\s*$
|
98
|
+
patterns:
|
99
|
+
- include: "#inline"
|
100
|
+
- include: text.html.basic
|
101
|
+
uuid: B2FD7223-BE64-4134-B43D-F7443EA54CCD
|
102
|
+
patterns:
|
103
|
+
- name: string.quoted.double.twiki
|
104
|
+
endCaptures:
|
105
|
+
"0":
|
106
|
+
name: punctuation.definition.string.end.twiki
|
107
|
+
begin: "\""
|
108
|
+
beginCaptures:
|
109
|
+
"0":
|
110
|
+
name: punctuation.definition.string.begin.twiki
|
111
|
+
end: "\""
|
112
|
+
patterns:
|
113
|
+
- name: constant.character.escape.twiki
|
114
|
+
match: \\.
|
115
|
+
- name: markup.heading.twiki
|
116
|
+
captures:
|
117
|
+
"1":
|
118
|
+
name: punctuation.definition.heading.twiki
|
119
|
+
"2":
|
120
|
+
name: entity.name.function.twiki
|
121
|
+
match: ^(-{3}\+{1,6})(.*)$
|
122
|
+
- name: markup.raw.twiki
|
123
|
+
captures:
|
124
|
+
"1":
|
125
|
+
name: punctuation.definition.tag.twiki
|
126
|
+
"2":
|
127
|
+
name: punctuation.definition.tag.twiki
|
128
|
+
"3":
|
129
|
+
name: punctuation.definition.tag.twiki
|
130
|
+
"4":
|
131
|
+
name: punctuation.definition.tag.twiki
|
132
|
+
begin: (<)verbatim(>)|(<)pre(>)
|
133
|
+
end: (</)verbatim(>)|(</)pre(>)
|
134
|
+
patterns:
|
135
|
+
- name: constant.character.escape.twiki
|
136
|
+
match: \\.
|
137
|
+
- name: meta.separator.twiki
|
138
|
+
match: ^-{3,}$\n
|
139
|
+
- name: markup.other.def.twiki
|
140
|
+
captures:
|
141
|
+
"1":
|
142
|
+
name: markup.other.def.term.twiki
|
143
|
+
"2":
|
144
|
+
name: markup.other.def.def.twiki
|
145
|
+
begin: "^ {3}([a-zA-Z0-9]+: )"
|
146
|
+
end: $\n?
|
147
|
+
patterns:
|
148
|
+
- include: "#list-paragraph"
|
149
|
+
- name: markup.other.table.twiki
|
150
|
+
begin: ^(\|)
|
151
|
+
beginCaptures:
|
152
|
+
"1":
|
153
|
+
name: punctuation.definition.table.twiki
|
154
|
+
end: ^(?:\s*$|(?=\s*>|[=-]{3,}$))
|
155
|
+
patterns:
|
156
|
+
- include: "#inline"
|
157
|
+
- name: markup.list.unnumbered.1.twiki
|
158
|
+
begin: ^ {3}(\*)
|
159
|
+
beginCaptures:
|
160
|
+
"1":
|
161
|
+
name: punctuation.definition.list_item.twiki
|
162
|
+
end: $\n?
|
163
|
+
patterns:
|
164
|
+
- include: "#list-paragraph"
|
165
|
+
- name: markup.list.unnumbered.2.twiki
|
166
|
+
begin: ^ {6}(\*)
|
167
|
+
beginCaptures:
|
168
|
+
"1":
|
169
|
+
name: punctuation.definition.list_item.twiki
|
170
|
+
end: $\n?
|
171
|
+
patterns:
|
172
|
+
- include: "#list-paragraph"
|
173
|
+
- name: markup.list.unnumbered.3.twiki
|
174
|
+
begin: ^ {9}(\*)
|
175
|
+
beginCaptures:
|
176
|
+
"1":
|
177
|
+
name: punctuation.definition.list_item.twiki
|
178
|
+
end: $\n?
|
179
|
+
patterns:
|
180
|
+
- include: "#list-paragraph"
|
181
|
+
- name: markup.list.unnumbered.4.twiki
|
182
|
+
begin: ^ {12}(\*)
|
183
|
+
beginCaptures:
|
184
|
+
"1":
|
185
|
+
name: punctuation.definition.list_item.twiki
|
186
|
+
end: $\n?
|
187
|
+
patterns:
|
188
|
+
- include: "#list-paragraph"
|
189
|
+
- name: markup.list.unnumbered.5.twiki
|
190
|
+
begin: ^ {15}(\*)
|
191
|
+
beginCaptures:
|
192
|
+
"1":
|
193
|
+
name: punctuation.definition.list_item.twiki
|
194
|
+
end: $\n?
|
195
|
+
patterns:
|
196
|
+
- include: "#list-paragraph"
|
197
|
+
- name: markup.list.unnumbered.6.twiki
|
198
|
+
begin: ^ {18}(\*)
|
199
|
+
beginCaptures:
|
200
|
+
"1":
|
201
|
+
name: punctuation.definition.list_item.twiki
|
202
|
+
end: $\n?
|
203
|
+
patterns:
|
204
|
+
- include: "#list-paragraph"
|
205
|
+
- name: markup.list.numbered.1.twiki
|
206
|
+
begin: ^ {3}\d
|
207
|
+
end: $\n?
|
208
|
+
patterns:
|
209
|
+
- include: "#numlist-paragraph"
|
210
|
+
- name: markup.list.numbered.2.twiki
|
211
|
+
begin: ^ {6}\d
|
212
|
+
end: $\n?
|
213
|
+
patterns:
|
214
|
+
- include: "#numlist-paragraph"
|
215
|
+
- name: markup.list.numbered.3.twiki
|
216
|
+
begin: ^ {9}\d
|
217
|
+
end: $\n?
|
218
|
+
patterns:
|
219
|
+
- include: "#numlist-paragraph"
|
220
|
+
- name: markup.list.numbered.4.twiki
|
221
|
+
begin: ^ {12}\d
|
222
|
+
end: $\n?
|
223
|
+
patterns:
|
224
|
+
- include: "#numlist-paragraph"
|
225
|
+
- name: markup.list.numbered.5.twiki
|
226
|
+
begin: ^ {15}\d
|
227
|
+
end: $\n?
|
228
|
+
patterns:
|
229
|
+
- include: "#numlist-paragraph"
|
230
|
+
- name: markup.list.numbered.6.twiki
|
231
|
+
begin: ^ {18}\d
|
232
|
+
end: $\n?
|
233
|
+
patterns:
|
234
|
+
- include: "#numlist-paragraph"
|
235
|
+
- name: meta.paragraph.twiki
|
236
|
+
begin: ^(?=\S)
|
237
|
+
end: ^\s*$
|
238
|
+
patterns:
|
239
|
+
- include: "#inline"
|
240
|
+
- include: text.html.basic
|
241
|
+
keyEquivalent: ^~T
|