mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-13 18:40:54 +01:00
Prepare 9.4.0 release
This commit is contained in:
parent
ac918d6a8b
commit
a0cc06b112
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -14,8 +14,8 @@
|
|||||||
"yaml.customTags": [
|
"yaml.customTags": [
|
||||||
"!ENV scalar",
|
"!ENV scalar",
|
||||||
"!ENV sequence",
|
"!ENV sequence",
|
||||||
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
|
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
|
||||||
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
|
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
|
||||||
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
|
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
10
CHANGELOG
10
CHANGELOG
@ -1,3 +1,13 @@
|
|||||||
|
mkdocs-material-9.4.0 (2023-09-21)
|
||||||
|
|
||||||
|
* Added Belarusian translations
|
||||||
|
* Added version info to entrypoint of package
|
||||||
|
* Added emoji extension as a replacement for materialx
|
||||||
|
* Improved slate color scheme (dark mode) - now even darker
|
||||||
|
* Restructured project to improve development experience
|
||||||
|
* Updated MkDocs to 1.5.3
|
||||||
|
* Fixed #3890: Development mode crashes on Linux
|
||||||
|
|
||||||
mkdocs-material-9.3.2+insiders-4.42.0 (2023-09-19)
|
mkdocs-material-9.3.2+insiders-4.42.0 (2023-09-19)
|
||||||
|
|
||||||
* Added support for using git submodules in projects plugin
|
* Added support for using git submodules in projects plugin
|
||||||
|
@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
## Material for MkDocs
|
## Material for MkDocs
|
||||||
|
|
||||||
|
### 9.4.0 <small>September 21, 2023</small> { id="9.4.0" }
|
||||||
|
|
||||||
|
- Added Belarusian translations
|
||||||
|
- Added version info to entrypoint of package
|
||||||
|
- Added emoji extension as a replacement for materialx
|
||||||
|
- Improved slate color scheme (dark mode) - now even darker
|
||||||
|
- Restructured project to improve development experience
|
||||||
|
- Updated MkDocs to 1.5.3
|
||||||
|
- Fixed #3890: Development mode crash on Linux
|
||||||
|
|
||||||
### 9.3.2 <small>September 19, 2023</small> { id="9.3.2" }
|
### 9.3.2 <small>September 19, 2023</small> { id="9.3.2" }
|
||||||
|
|
||||||
- Updated Slovenian translations
|
- Updated Slovenian translations
|
||||||
|
@ -66,8 +66,8 @@ theme:
|
|||||||
"yaml.customTags": [ // (1)!
|
"yaml.customTags": [ // (1)!
|
||||||
"!ENV scalar",
|
"!ENV scalar",
|
||||||
"!ENV sequence",
|
"!ENV sequence",
|
||||||
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
|
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
|
||||||
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
|
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
|
||||||
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
|
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -41,8 +41,8 @@ lines to `mkdocs.yml`:
|
|||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- attr_list
|
- attr_list
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
```
|
```
|
||||||
|
|
||||||
The following icon sets are bundled with Material for MkDocs:
|
The following icon sets are bundled with Material for MkDocs:
|
||||||
|
@ -168,11 +168,11 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"emoji_generator": {
|
"emoji_generator": {
|
||||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_generator",
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_generator",
|
||||||
"default": "!!python/name:materialx.emoji.to_svg"
|
"default": "!!python/name:material.extensions.emoji.to_svg"
|
||||||
},
|
},
|
||||||
"emoji_index": {
|
"emoji_index": {
|
||||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_index",
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.emoji_index",
|
||||||
"default": "!!python/name:materialx.emoji.twemoji"
|
"default": "!!python/name:material.extensions.emoji.twemoji"
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons",
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#+pymdownx.emoji.options.custom_icons",
|
||||||
|
@ -129,8 +129,8 @@ Then, add the following lines to `mkdocs.yml`:
|
|||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
options:
|
options:
|
||||||
custom_icons:
|
custom_icons:
|
||||||
- overrides/.icons
|
- overrides/.icons
|
||||||
|
@ -15,7 +15,7 @@ syntax extensions for technical writing.
|
|||||||
|
|
||||||
## Supported extensions
|
## Supported extensions
|
||||||
|
|
||||||
The following extensions are all supported by Material for MkDocs and therefore
|
The following extensions are all supported by Material for MkDocs and therefore
|
||||||
strongly recommended. Click on each extension to learn about its purpose and
|
strongly recommended. Click on each extension to learn about its purpose and
|
||||||
configuration:
|
configuration:
|
||||||
|
|
||||||
@ -77,8 +77,8 @@ your documentation project.
|
|||||||
|
|
||||||
### Minimal configuration
|
### Minimal configuration
|
||||||
|
|
||||||
This configuration is a good starting point for when you're using Material for
|
This configuration is a good starting point for when you're using Material for
|
||||||
MkDocs for the first time. The best idea is to explore the [reference], and
|
MkDocs for the first time. The best idea is to explore the [reference], and
|
||||||
gradually add what you want to use:
|
gradually add what you want to use:
|
||||||
|
|
||||||
``` yaml
|
``` yaml
|
||||||
@ -121,8 +121,8 @@ markdown_extensions:
|
|||||||
- pymdownx.caret
|
- pymdownx.caret
|
||||||
- pymdownx.details
|
- pymdownx.details
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
- pymdownx.highlight
|
- pymdownx.highlight
|
||||||
- pymdownx.inlinehilite
|
- pymdownx.inlinehilite
|
||||||
- pymdownx.keys
|
- pymdownx.keys
|
||||||
|
@ -222,8 +222,8 @@ in `*.svg` file format into the resulting HTML page. Enable it via `mkdocs.yml`:
|
|||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji # (1)!
|
emoji_index: !!python/name:material.extensions.emoji.twemoji # (1)!
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
```
|
```
|
||||||
|
|
||||||
1. [Python Markdown Extensions] uses the `pymdownx` namespace, but in order to
|
1. [Python Markdown Extensions] uses the `pymdownx` namespace, but in order to
|
||||||
@ -241,7 +241,7 @@ The following configuration options are supported:
|
|||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- md:option pymdownx.emoji.emoji_generator -->
|
<!-- md:option pymdownx.emoji.emoji_generator -->
|
||||||
@ -253,7 +253,7 @@ The following configuration options are supported:
|
|||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- md:option pymdownx.emoji.options.custom_icons -->
|
<!-- md:option pymdownx.emoji.options.custom_icons -->
|
||||||
@ -265,8 +265,8 @@ The following configuration options are supported:
|
|||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
options:
|
options:
|
||||||
custom_icons:
|
custom_icons:
|
||||||
- overrides/.icons
|
- overrides/.icons
|
||||||
|
@ -18,4 +18,4 @@
|
|||||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
__version__ = "9.3.2"
|
__version__ = "9.4.0"
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.3.2">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.4.0">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page.meta and page.meta.title %}
|
{% if page.meta and page.meta.title %}
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.3.2",
|
"version": "9.4.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.3.2",
|
"version": "9.4.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clipboard": "^2.0.11",
|
"clipboard": "^2.0.11",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.3.2",
|
"version": "9.4.0",
|
||||||
"description": "Documentation that simply works",
|
"description": "Documentation that simply works",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
Loading…
Reference in New Issue
Block a user