Skip to content

Commit e93dc82

Browse files
committed
initial commit
0 parents  commit e93dc82

29 files changed

+8055
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
temp
2+
.DS_Store

atlas.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"name": "oreillymedia/modular-es6",
3+
"branches": ["master"],
4+
"export_formats": ["html"],
5+
"files": [
6+
"sections/cover.html",
7+
"sections/toc.html",
8+
"chapters/ch03.asciidoc",
9+
"chapters/ch04.asciidoc",
10+
"chapters/ch05.asciidoc",
11+
"chapters/ch06.asciidoc",
12+
"chapters/ch07.asciidoc",
13+
"chapters/ch08.asciidoc",
14+
"chapters/ch09.asciidoc"
15+
],
16+
"formats": {
17+
"pdf": {
18+
"version": "web",
19+
"toc": true,
20+
"index": true,
21+
"syntaxhighlighting": true,
22+
"show_comments": false,
23+
"color_count": false,
24+
"trim_size": "7inx9.1875in"
25+
},
26+
"epub": {
27+
"toc": true,
28+
"index": true,
29+
"syntaxhighlighting": true,
30+
"epubcheck": true,
31+
"show_comments": false,
32+
"downsample_images": false
33+
},
34+
"mobi": {
35+
"toc": true,
36+
"index": true,
37+
"syntaxhighlighting": true,
38+
"show_comments": false,
39+
"downsample_images": false
40+
},
41+
"html": {
42+
"toc": true,
43+
"index": true,
44+
"syntaxhighlighting": true,
45+
"show_comments": false,
46+
"consolidated": false
47+
}
48+
},
49+
"theme": "oreillymedia/animal_theme",
50+
"title": "Practical ES6",
51+
"templating": false,
52+
"print_isbn13": "",
53+
"lang": "en",
54+
"accent_color": "cmyk(100%, 3%, 50%, 0%)"
55+
}

0 commit comments

Comments
 (0)