forked from Guts/mkdocs-rss-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
57 lines (51 loc) · 1.36 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Project information
site_name: MkDocs RSS Plugin
site_description: Documentation about the MkDocs RSS Plugin
site_author: dev@ingeoveritas.com (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:
- minify:
minify_html: true
- 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: united
language: en
# Extensions to enhance markdown
markdown_extensions:
- admonition
- attr_list
- codehilite
- meta
- pymdownx.emoji
- pymdownx.snippets:
base_path: "."
check_paths: true
- toc:
permalink: "#"
nav:
- "Home": "index.md"
- "Settings": "configuration.md"
- "Changelog": "changelog.md"