File tree Expand file tree Collapse file tree 7 files changed +58
-25
lines changed Expand file tree Collapse file tree 7 files changed +58
-25
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ We aim to support only the latest LTS versions. At the moment this includes:
40
40
* JDK 17
41
41
* JDK 21
42
42
43
- Please note that although we support JDK 8 we have plans to drop it in one of our next ** major** release (most likely ` v2.0.0 ` ) .
43
+ Please note that although we support JDK 8 we have plans to drop it in one of our next ** major** release.
44
44
45
45
## Documentation
46
46
Original file line number Diff line number Diff line change 3
3
This is our copy of the MIT license.
4
4
5
5
## License Text
6
+
6
7
```
7
8
--8<-- "../LICENSE.MIT.md"
8
9
```
Original file line number Diff line number Diff line change 1
- {! ../../README.md [ ln:19-37 ] !}
1
+ {! ../../README.md [ ln:19-47 ] !}
2
2
3
3
## Installation
4
4
49
49
Create/load a properties file in your project which defines the following properties:
50
50
51
51
```
52
+
52
53
--8<-- "../src/test/resources/amazon-test-sample.properties"
53
54
```
54
55
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
4
4
build :
5
5
context : .
6
6
dockerfile : ./docs.Dockerfile
7
- image : squidfunk/mkdocs-material:5 .5.9 -custom
7
+ image : squidfunk/mkdocs-material:9 .5.44 -custom
8
8
container_name : s3fs-nio-docs
9
9
working_dir : /workspace/docs
10
10
volumes :
@@ -15,7 +15,7 @@ services:
15
15
build :
16
16
context : .
17
17
dockerfile : ./docs.Dockerfile
18
- image : squidfunk/mkdocs-material:5 .5.9 -custom
18
+ image : squidfunk/mkdocs-material:9 .5.44 -custom
19
19
working_dir : /workspace/docs
20
20
command : [ "build" ]
21
21
volumes :
Original file line number Diff line number Diff line change 1
- FROM squidfunk/mkdocs-material:5 .5.9
1
+ FROM squidfunk/mkdocs-material:9 .5.44
2
2
3
3
WORKDIR /workspace/docs
4
4
COPY requirements.txt /workspace/docs
Original file line number Diff line number Diff line change @@ -8,23 +8,50 @@ docs_dir: content
8
8
theme :
9
9
name : material
10
10
custom_dir : ' theme'
11
- icon :
12
- repo : fontawesome/brands/github-alt
11
+ icons :
12
+ repo : fontawesome/brands/github
13
+ fontawesome : true
13
14
14
15
font :
15
16
text : Roboto
16
17
code : Roboto Mono
17
18
19
+ palette :
20
+ # Palette toggle for light mode
21
+ - scheme : default
22
+ media : " (prefers-color-scheme: light)"
23
+ primary : indigo
24
+ toggle :
25
+ icon : material/toggle-switch
26
+ name : Switch to dark mode
27
+
28
+ # Palette toggle for dark mode
29
+ - scheme : slate
30
+ media : " (prefers-color-scheme: dark)"
31
+ toggle :
32
+ icon : material/toggle-switch-off-outline
33
+ name : Switch to light mode
34
+
18
35
features :
19
- - search.highlight
36
+ - announce.dismiss
37
+ - content.tooltips
20
38
- meta
21
- # Instant should be disabled because of a bug - not redirecting pages.
22
- # - instant
39
+ - navigation.footer
40
+ # - navigation.indexes
41
+ - navigation.instant
42
+ # - navigation.sections
43
+ - navigation.tabs
44
+ - navigation.tabs.sticky
45
+ - navigation.top
46
+ - navigation.tracking
47
+ - search.highlight
48
+ - search.share
49
+ - search.suggest
23
50
- tabs
24
51
25
52
plugins :
26
53
- search :
27
- prebuild_index : false
54
+ prebuild : false
28
55
lang :
29
56
- en
30
57
# - mkdocs-pom-parser-plugin:
@@ -39,7 +66,9 @@ plugins:
39
66
markdown_extensions :
40
67
- admonition
41
68
- attr_list
69
+ - footnotes
42
70
- meta
71
+ - md_in_html
43
72
- mdx_gh_links
44
73
- mdx_include :
45
74
base_path : ./content
@@ -62,8 +91,8 @@ markdown_extensions:
62
91
- pymdownx.critic
63
92
- pymdownx.details
64
93
- pymdownx.emoji :
65
- emoji_index : !!python/name:materialx. emoji.twemoji
66
- emoji_generator : !!python/name:materialx. emoji.to_svg
94
+ emoji_generator : !!python/name:material.extensions. emoji.to_svg
95
+ emoji_index : !!python/name:material.extensions. emoji.twemoji
67
96
- pymdownx.highlight
68
97
- pymdownx.inlinehilite
69
98
- pymdownx.keys
@@ -75,8 +104,10 @@ markdown_extensions:
75
104
- pymdownx.smartsymbols
76
105
- pymdownx.snippets :
77
106
check_paths : true
107
+ restrict_base_path : False
78
108
- pymdownx.superfences
79
- - pymdownx.tabbed
109
+ - pymdownx.tabbed :
110
+ alternate_style : true
80
111
- pymdownx.tasklist :
81
112
custom_checkbox : true
82
113
- pymdownx.tilde
Original file line number Diff line number Diff line change 1
- mkdocs == 1.1.2
2
- mkdocs-material == 5 .5.11
3
- mdx_gh_links == 0 .3
4
- #mdx_include==1.3.3
1
+ mkdocs ~= 1.6
2
+ mkdocs-material == 9 .5.44
3
+ mkdocs-material-extensions ~= 1 .3
4
+ mdx_gh_links == 0.4
5
5
mdx_include == 1.4.2
6
- mkdocs-markdownextradata-plugin == 0.2.1
7
- mkdocs-git-revision-date- plugin == 0.3
8
- mkdocs-redirects == 1.0.1
9
- mkdocs-htmlproofer-plugin == 0.0.3
10
- mkdocs-pom-parser- plugin >= 1.0.3
11
- mkdocs-minify-plugin == 0.3 .0
6
+ mdx_include == 1.4.2
7
+ mkdocs-markdownextradata- plugin == 0.2.5
8
+ mkdocs-git-revision-date-plugin == 0.3.2
9
+ mkdocs-redirects == 1.2.1
10
+ mkdocs-htmlproofer- plugin == 1.2.1
11
+ mkdocs-minify-plugin == 0.8 .0
12
12
# This dependency is necessary for older mkdocs versions.
13
13
# TODO: Remove when upgrading mkdocs.
14
- jinja2 < 3.1 .0
14
+ jinja2 ~= 3 .0
You can’t perform that action at this time.
0 commit comments