Skip to content

Commit 1e8d651

Browse files
committed
first commit
1 parent fda4963 commit 1e8d651

File tree

537 files changed

+222388
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

537 files changed

+222388
-4
lines changed

.DS_Store

18 KB
Binary file not shown.

404.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Page Not Found
3+
layout: default
4+
toc-style: kramdown
5+
type: 404
6+
---
7+
8+
<p>Sorry, page not found. Please let us know about the broken link.</p>
9+
10+
<div class="searchForm404">
11+
<form action="search.html" method="get">
12+
<label for="search-box">Search</label>
13+
<input type="text" id="search-box" name="query">
14+
<input type="submit" value="search">
15+
</form>
16+
</div>

LICENSE

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Apache License
1+
(Note: This site includes third party software subject varying copyrights. See NOTICE for details.)
2+
3+
4+
Apache License
25
Version 2.0, January 2004
36
http://www.apache.org/licenses/
47

NOTICE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
**********************
3+
THIRD-PARTY COMPONENTS
4+
**********************
5+
6+
This site includes third-party code subject to the following copyrights:
7+
8+
* Original theme from a Bootstrap Bootswatch fork: http://www.codeply.com/go/rV7KhUjwCN (MIT license)
9+
* Bootstrap: http://themes.getbootstrap.com/pages/our-license (MIT license)
10+
* jQuery: https://github.com/jquery/jquery/edit/master/LICENSE.txt (MIT license)
11+
* Jekyll: https://github.com/jekyll/jekyll (MIT license)
12+
* Navgoco sidebar: https://github.com/tefra/navgoco (BSD license)
13+
* Anchor JS: https://github.com/bryanbraun/anchorjs/ (MIT license)
14+
* Lunr.js: https://github.com/olivernn/lunr.js
15+
* pygments-css (monokai.css) for code syntax highlighting: https://github.com/richleland/pygments-css (Unlicense)
16+
* Bootsnipp footer: http://bootsnipp.com/snippets/1KEEq (MIT license)
17+
* TOC generator: https://github.com/ghiculescu/jekyll-table-of-contents.
18+
* FontAwesome: http://fontawesome.io/license/ (GPL)
19+
* jQuery Cookie: https://github.com/carhartl/jquery-cookie (MIT license)
20+
* jQuery inc-plugin. Licensed under the MIT license.
21+
22+
See the /assets/licenses folder for the license files required for these third-party components.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# learnapidoc
2-
Repo for API doc book
1+
Site for my book/course/ebook/pdf.

_config.yml

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
language: english
2+
target: jekyll
3+
4+
# Link to home
5+
url: http://learnapidoc.com/
6+
7+
destination: _site
8+
image_path: docs
9+
port: 4000
10+
highlighter: rouge
11+
github_editme_path: https://github.com/amzn/appstore-alexa-docs/
12+
13+
target: web
14+
15+
image_path: docs
16+
17+
markdown: kramdown
18+
kramdown:
19+
input: GFM
20+
auto_ids: true
21+
hard_wrap: false
22+
syntax_highlighter: rouge
23+
24+
collections:
25+
docs:
26+
output: true
27+
search:
28+
output: true
29+
30+
sass:
31+
style: compressed
32+
33+
defaults:
34+
-
35+
scope:
36+
path: ""
37+
type: pages
38+
values:
39+
layout: default
40+
topnav: topnav
41+
-
42+
scope:
43+
path: ""
44+
type: docs
45+
values:
46+
layout: default
47+
topnav: topnav
48+
-
49+
scope:
50+
path: ""
51+
type: search
52+
values:
53+
layout: default
54+
topnav: topnav
55+
type: search
56+
-
57+
scope:
58+
path: "images"
59+
values:
60+
image: true
61+
62+
63+
########## UI text ###############
64+
65+
66+
uistring:
67+
tableofcontents: Table of Contents
68+
log_doc_issue: Log Doc Issue
69+
breadcrumb:
70+
home: Home
71+
documentation: Documentation
72+
expandall: Expand All
73+
collapseall: Collapse All
74+
title: Amazon Developer Portal # Displays as site title on top nav bar and on site metadata
75+
description: Documentation for Amazon products, including Fire TV, Fire tablets, Alexa, Appstore, and more. # Displays as site description meta
76+
search_placeholder_global: Global Search ...
77+
search_placeholder_product: Product Search ...
78+
github_edit_button_text: Edit on GitHub
79+
search_results_page_title: Search results
80+
search_no_results_found: No results found.
81+
products: Products
82+
docindex_product: Product
83+
docindex_startpage: Starting page

_config_kindle.yml

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
language: english
2+
target: jekyll
3+
4+
# Link to home
5+
url: /
6+
7+
destination: _site
8+
image_path: docs
9+
port: 5000
10+
highlighter: rouge
11+
github_editme_path: https://github.com/amzn/appstore-alexa-docs/
12+
13+
target: pdf
14+
15+
image_path: docs
16+
17+
markdown: kramdown
18+
kramdown:
19+
input: GFM
20+
auto_ids: true
21+
hard_wrap: false
22+
syntax_highlighter: rouge
23+
24+
collections:
25+
docs:
26+
output: true
27+
frontmatter:
28+
output: true
29+
search:
30+
output: true
31+
32+
sass:
33+
style: compressed
34+
35+
defaults:
36+
-
37+
scope:
38+
path: ""
39+
type: pages
40+
values:
41+
layout: kindle
42+
topnav: topnav
43+
-
44+
scope:
45+
path: ""
46+
type: docs
47+
values:
48+
layout: kindle
49+
topnav: topnav
50+
-
51+
scope:
52+
path: ""
53+
type: search
54+
values:
55+
layout: default
56+
topnav: topnav
57+
type: search
58+
-
59+
scope:
60+
path: images
61+
values:
62+
image: true
63+
64+
65+
########## UI text ###############
66+
67+
68+
uistring:
69+
tableofcontents: Table of Contents
70+
log_doc_issue: Log Doc Issue
71+
breadcrumb:
72+
home: Home
73+
documentation: Documentation
74+
expandall: Expand All
75+
collapseall: Collapse All
76+
title: Amazon Developer Portal # Displays as site title on top nav bar and on site metadata
77+
description: Documentation for Amazon products, including Fire TV, Fire tablets, Alexa, Appstore, and more. # Displays as site description meta
78+
search_placeholder_global: Global Search ...
79+
search_placeholder_product: Product Search ...
80+
github_edit_button_text: Edit on GitHub
81+
search_results_page_title: Search results
82+
search_no_results_found: No results found.
83+
products: Products
84+
docindex_product: Product
85+
docindex_startpage: Starting page

0 commit comments

Comments
 (0)