-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace
test_simple_build
with a new mkdocs_simple.yml
`/mkdocs.yml` requires theme and plugins in `requirements/documentation.txt`, and `test_simple_build` will fail if they're not installed. The commit removes those dependencies and turns it into `tests/fixtures/mkdocs_simple.yml`.
- Loading branch information
1 parent
4aa6bbb
commit 9b81eb1
Showing
3 changed files
with
52 additions
and
3 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
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,51 @@ | ||
# Project information | ||
site_name: MkDocs RSS Plugin | ||
site_description: Documentation about the MkDocs RSS Plugin | ||
site_author: [email protected] (Julien M.) | ||
site_url: https://guts.github.io/mkdocs-rss-plugin/ | ||
copyright: "Guts - In Geo Veritas" | ||
|
||
# Repository | ||
repo_name: "guts/mkdocs-rss-plugin" | ||
repo_url: "https://github.com/guts/mkdocs-rss-plugin/" | ||
edit_uri: "blob/main/docs/" | ||
|
||
docs_dir: "docs/" | ||
use_directory_urls: true | ||
|
||
plugins: | ||
- rss: | ||
date_from_meta: | ||
as_creation: "date" | ||
as_update: false | ||
datetime_format: "%Y-%m-%d %H:%M" | ||
default_timezone: "Europe/Paris" | ||
default_time: "22:00" | ||
abstract_chars_count: 160 | ||
abstract_delimiter: <!-- more --> | ||
image: https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg.png | ||
match_path: ".*" | ||
pretty_print: false | ||
url_parameters: | ||
utm_source: "documentation" | ||
utm_medium: "RSS" | ||
utm_campaign: "feed-syndication" | ||
- search | ||
|
||
theme: | ||
name: mkdocs | ||
language: en | ||
|
||
# Extensions to enhance markdown | ||
markdown_extensions: | ||
- admonition | ||
- attr_list | ||
- codehilite | ||
- meta | ||
- toc: | ||
permalink: "#" | ||
|
||
nav: | ||
- "Home": "index.md" | ||
- "Settings": "configuration.md" | ||
- "Changelog": "changelog.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