Skip to content
Snippets Groups Projects
Commit badeb7e8 authored by squidfunk's avatar squidfunk Committed by Martin Donath
Browse files

Added missing theme configuration file for mkdocs 0.17

parent 5e7ad632
No related branches found
No related tags found
No related merge requests found
mkdocs-material-1.12.1 (2017-10-xx)
* Improved downward compatibility with custom partials
* Fixed #519: Missing theme configuration file
mkdocs-material-1.12.0 (2017-10-20) mkdocs-material-1.12.0 (2017-10-20)
* Added support for setting language(s) via mkdocs.yml * Added support for setting language(s) via mkdocs.yml
......
recursive-include material *.ico *.js *.css *.html *.svg recursive-include material *.ico *.js *.css *.html *.svg *.yml
recursive-exclude site * recursive-exclude site *
recursive-exclude * __pycache__ recursive-exclude * __pycache__
recursive-exclude * *.py[co] recursive-exclude * *.py[co]
......
...@@ -35,7 +35,7 @@ import version from "gulp-rev-replace" ...@@ -35,7 +35,7 @@ import version from "gulp-rev-replace"
export default (gulp, config, args) => { export default (gulp, config, args) => {
return () => { return () => {
const metadata = require(path.join(process.cwd(), "./package.json")) const metadata = require(path.join(process.cwd(), "./package.json"))
return gulp.src(`${config.views.src}/**/*.{html,py}`) return gulp.src(`${config.views.src}/**/*.{html,py,yml}`)
.pipe(changed(config.views.build)) .pipe(changed(config.views.build))
.pipe( .pipe(
minhtml({ minhtml({
......
# Copyright (c) 2016-2017 Martin Donath <martin.donath @squidfunk.com>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Static pages to build
static_templates:
- 404.html
# Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Static pages to build
static_templates:
- 404.html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment