-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
95 lines (87 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
site_name: Codeigniter4-Datatables
site_description: Documentation for Datatables support in your application built with the CodeIgniter 4 framework
theme:
name: material
logo: assets/flame.svg
favicon: assets/favicon.ico
icon:
repo: fontawesome/brands/github
font:
text: Raleway
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: codeigniter
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- content.code.copy
- navigation.footer
- content.action.edit
- navigation.top
- search.suggest
- search.highlight
- search.share
extra:
homepage: https://github.com/atsanna/codeigniter4-datatables
generator: false
social:
- icon: material/github
link: https://github.com/atsanna/codeigniter4-datatables
name: GitHub
# - icon: material/twitter
# link: https://twitter.com/CodeIgniterPhp
# name: X
# - icon: material/forum
# link: https://forum.codeigniter.com
# name: Forum Codeigniter
# - icon: material/slack
# link: https://join.slack.com/t/codeigniterchat/shared_invite/zt-244xrrslc-l_I69AJSi5y2a2RVN~xIdQ
# name: Slack
site_url: https://atsanna.github.io/codeigniter4-datatables
repo_url: https://github.com/atsanna/codeigniter4-datatables
edit_uri: edit/main/docs/
copyright: Copyright © 2024 Antonio Sanna.
markdown_extensions:
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: false
- admonition
- pymdownx.details
extra_css:
- https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/github.min.css
- assets/css/codeigniter.css
- assets/css/codeigniter_dark_mode.css
extra_javascript:
- https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js
- assets/js/hljs.js
- assets/js/curl.min.js
plugins:
- search
- git-revision-date-localized:
enable_creation_date: true
- redirects:
redirect_maps:
'install.md': 'getting_started/install.md'
'table.md': 'html/table.md'
'javascript.md': 'javascript/javascript.md'
nav:
- Home: index.md
- Getting Started:
- getting_started/install.md
- Html:
- html/table.md
- Javascript:
- javascript/javascript.md