forked from michfield/sublime-strapdown-preview
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStrapdown Markdown Preview.sublime-settings
64 lines (52 loc) · 1.6 KB
/
Strapdown Markdown Preview.sublime-settings
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
/*
Default settings
Strapdown.js Markdown Preview
*/
{
/*
Sets an opener for HTML files
default: Use the system default HTML viewer
<other>: Provide a full path to an executable.
Windows examples:
"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
"C:\\Program Files\\Internet Explorer\\iexplore.exe"
"C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"
*/
"browser": null,
/*
Set default theme.
Check http://bootswatch.com/ for samples.
Valid values are:
amelia,
cerulean,
cyborg,
journal,
readable,
simplex,
slate,
spacelab,
spruce,
superhero,
united
*/
"theme": "united",
/*
Sets which Strapdown.js version to use.
remote: Use the remote version downloaded at
a time of viewing a document
local: Use version from hard disk.
Caution when using local version of Strapdown.js. It should be
faster to render, but if you plan to open preview on some other
computer, this version will not work as expected.
*/
"strapdown": "local",
/*
URL to remote strapdown.js file. If you will upload your own remote strapdown.js,
don't forget to upload other files using the below hierarchy.
+ strapdown
+ themes
strapdown.js
strapdown.css
*/
"remote": "http://strapdownjs.com/v/0.2/strapdown.js"
}