-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuiltin.rb
118 lines (113 loc) · 3.07 KB
/
builtin.rb
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
class Deplate::Core
class << self
def builtin_modules
return [
"anyword",
"babelfish",
"code-coderay",
"code-gvim",
"code-gvim71",
"code-highlight",
"colored-log",
"encode",
"endnotes",
"entities-decode",
"entities-encode",
"guesslanguage",
"html-asciimath",
"html-deplate-button",
"html-headings-navbar",
"html-highstep",
"html-jsmath",
"html-mathml",
"html-obfuscate-email",
"html-sidebar",
"htmlslides-navbar-fh",
"iconv",
"imgurl",
"inlatex-compound",
"koma",
"lang-de",
"lang-en",
"lang-ru-koi8-r",
"lang-ru",
"lang-zh_CN-autospace",
"lang-zh_CN",
"latex-emph-table-head",
"latex-styles",
"latex-verbatim-small",
"linkmap",
"makefile",
"mark-external-urls",
"markup-1-warn",
"markup-1",
"navbar-png",
"noindent",
"numpara",
"particle-math",
"php-extra",
"pstoedit",
"recode",
"smart-dash",
"smiley",
"soffice",
"symbols-latin1",
"symbols-od-utf-8",
"symbols-plain",
"symbols-sgml",
"symbols-utf-8",
"symbols-xml",
"syntax-region-alt",
"utf8",
"validate-html",
]
end
def builtin_formatters
return [
"dbk-article-4.1.2",
"dbk-article",
"dbk-book",
"dbk-ref",
"dbk-slides",
"dbk-snippet",
"html-snippet",
"html",
"htmlsite",
"htmlslides",
"htmlwebsite",
"latex-dramatist",
"latex-snippet",
"latex",
"null",
"php",
"phpsite",
"plain",
"sweave",
"template",
"xhtml10t",
"xhtml11m",
]
end
def builtin_css
return []
end
def builtin_input
return [
"deplate-headings",
"deplate-restricted",
"deplate",
"play",
"rdoc",
"template",
]
end
def builtin_metadata
return [
]
end
def builtin_locale
return [
]
end
end
end