-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
83 lines (76 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Project information
site_name: leekslazylogger
site_description: Documentation for leekslazylogger - an easy-to-use and lightweight Node.JS logger with file support, colours, and timestamps.
site_author: eartharoid
site_url: https://logger.eartharoid.me
#nav:
# - Home: index.md
# - NPM: https://www.npmjs.com/package/leekslazylogger
# - Yarn: https://yarnpkg.com/package/leekslazylogger
# Repository
repo_name: eartharoid/leekslazylogger
repo_url: https://github.com/eartharoid/leekslazylogger
# Copyright
copyright: '© 2020 Isaac Saunders'
# Configuration
theme:
name: material
language: en
palette:
# scheme: slate
primary: green
accent: green
font:
text: Roboto
code: Roboto Mono
features:
- instant
logo: /img/logo.png
favicon: /img/favicon.ico
# Extras
extra:
social:
- icon: fontawesome/solid/globe
link: https://eartharoid.me
- icon: fontawesome/brands/github-alt
link: https://github.com/eartharoid
- icon: fontawesome/brands/twitter
link: https://twitter.com/eartharoid
- icon: fontawesome/brands/instagram
link: https://instagram.com/eartharoid
# Google Analytics
#google_analytics:
# - UA-XXXXXXXX-X
# - auto
plugins:
- search # necessary for search to work
- git-revision-date-localized
- awesome-pages
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- footnotes
- meta
# pymd
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde