-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mkdocs): mkdocs generator works now
It can be selected for each type of program we want to build, and makes sense for everything that is not a library. We also tried to unify names and folders a bit more, even though there certainly is more work to be done to be fully non-redundant. Fixes #43
- Loading branch information
Showing
14 changed files
with
77 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ gen/*-cli/ | |
*.go | ||
*.pyc | ||
**target/ | ||
**build_html/ | ||
.*.deps | ||
**Cargo.lock | ||
*.sublime-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# HELLO GROUPSMIGRATION:V1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
site_name: Groups Migration v0.0.1+20140416 | ||
site_url: http://byron.github.io/google-apis-rs/google-groupsmigration1-cli | ||
site_description: Write integrating applications with bcore | ||
|
||
repo_url: https://github.com/Byron/google-apis-rs/tree/master/gen/groupsmigration1-cli | ||
|
||
docs_dir: docs | ||
site_dir: build_html | ||
|
||
pages: | ||
- ['index.md', 'Home'] | ||
|
||
theme: readthedocs | ||
|
||
copyright: Copyright © 2015, `Sebastian Thiel` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# HELLO ${id.upper()} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<%! from util import put_and %>\ | ||
<%namespace name="util" file="../lib/util.mako"/>\ | ||
site_name: ${util.canonical_name()} v${util.crate_version()} | ||
site_url: ${cargo.doc_base_url}/${util.crate_name()} | ||
site_description: Write integrating applications with bcore | ||
repo_url: ${util.github_source_root_url()} | ||
docs_dir: docs | ||
site_dir: ${mkdocs.site_dir} | ||
pages: | ||
- ['index.md', 'Home'] | ||
## - ['be.md', 'Features', 'BE - universal commandline tool'] | ||
theme: readthedocs | ||
copyright: Copyright © ${copyright.years}, ${put_and(["`%s`" % a for a in copyright.authors])} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters