forked from facelessuser/ExportHtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportHtml.sublime-settings
More file actions
187 lines (168 loc) · 6.67 KB
/
ExportHtml.sublime-settings
File metadata and controls
187 lines (168 loc) · 6.67 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
// By default, the current color scheme is used
// You can define a string path to an alternate default
// Color scheme here, it must be relative to the
// Example:
// "alternate_scheme": "Packages/ExportHtml/themes/Print-Color.tmTheme"
"alternate_scheme": false,
// By default, ExportHtml uses your current font_face and font_size.
// You can change this setting to always use this value. By default,
// the setting is a literal false, but you can change it to an actual
// font_face to enable this setting.
"alternate_font_face": false,
// By default, ExportHtml uses your current font_face and font_size.
// You can change this setting to always use this value. By default,
// the setting is a literal false, but you can change it to an actual
// font_size to enable this setting.
"alternate_font_size": false,
// Minimum allowable size for a selection to be accepted for only the selection to be exproted
// Multi-select will also ignore selections whose size is less than this.
"valid_selection_size": 4,
// Scope to use for color for annotations in a Sublime Text view
"annotation_highlight_scope": "comment",
// Style to use for for annotations in a Sublime Text view
// (outline|solid)
"annotation_highlight_style": "outline",
// Orientation that the toolbar will be rendered with.
// (horizontal|vertical)
"toolbar_orientation": "horizontal",
// Use subnotify if available
"use_sub_notify": true,
// Export HTML CSS.
"export_css": "Packages/ExportHtml/css/export.css",
// Define configurations for the drop down export menu
"html_panel": [
// Browser print color (selections and multi-selections allowed)
{
"Browser Print - Color": {
"numbers": true,
"wrap": 900,
"browser_print": true,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Color.tmTheme",
"style_gutter": false,
"diable_nbsp": true
}
},
// Browser print black and white (selections and multi-selections allowed)
{
"Browser Print - Grayscale": {
"numbers": true,
"wrap": 900,
"browser_print": true,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Grayscale.tmTheme",
"style_gutter": false,
"diable_nbsp": true
}
},
// Browser print color; highlight selections(selections and multi-selections allowed)
// Background colors are disabled in browser printing by default, so they will not
// print until background color printing is enabled
{
"Browser Print - Color (Selection Highlights)": {
"numbers": true,
"wrap": 900,
"browser_print": true,
"highlight_selections": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Color.tmTheme",
"style_gutter": false,
"diable_nbsp": true
}
},
// Browser print black and white; highlight selections(selections and multi-selections allowed)
// Background colors are disabled in browser printing by default, so they will not
// print until background color printing is enabled
{
"Browser Print - Grayscale (Selection Highlights)": {
"numbers": true,
"wrap": 900,
"browser_print": true,
"highlight_selections": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Grayscale.tmTheme",
"style_gutter": false,
"diable_nbsp": true
}
},
// Browser view color (selections and multi-selections allowed)
{
"Browser View - Color": {
"numbers": true,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Color.tmTheme"
}
},
// Browser view black and white (selections and multi-selections allowed)
{
"Browser View - Grayscale": {
"numbers": true,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Grayscale.tmTheme"
}
},
// Browser view color; highlight selections(selections and multi-selections allowed)
{
"Browser View - Color (Selection Highlights)": {
"numbers": true,
"highlight_selections": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Color.tmTheme"
}
},
// Browser view black and white; highlight selections(selections and multi-selections allowed)
{
"Browser View - Grayscale (Selection Highlights)": {
"numbers": true,
"highlight_selections": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Grayscale.tmTheme"
}
},
// Sublime view color HTML source; (selections and multi-selections allowed)
{
"Sublime View - Color": {
"view_open": true,
"numbers": true,
"wrap": 900,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Color.tmTheme"
}
},
// Sublime view grayscale HTML source; (selections and multi-selections allowed)
{
"Sublime View - Grayscale": {
"view_open": true,
"numbers": true,
"wrap": 900,
"multi_select": true,
"color_scheme": "Packages/ExportHtml/ColorSchemes/Print-Grayscale.tmTheme"
}
}
],
"bbcode_panel": [
{
"To Clipboard - Format as BBCode": {
"numbers": false,
"multi_select": true
}
},
{
"To Clipboard - Format as BBCode (show gutter)": {
"numbers": true,
"multi_select": true
}
},
{
"Sublime View - Show BBCode in View": {
"numbers": false,
"multi_select": true,
"view_open": true
}
},
{
"Sublime View - Show BBCode in View (show gutter)": {
"numbers": true,
"multi_select": true,
"view_open": true
}
}
]
}