Merge branch 'master' into merge/piri-piri

This commit is contained in:
squidfunk 2023-07-09 18:20:08 +01:00
commit 5c211d023a
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
20 changed files with 1007 additions and 1663 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -74,6 +74,7 @@
"linebreaks": "unix",
"media-feature-name-no-unknown": null,
"media-feature-range-notation": null,
"media-query-no-invalid": null,
"no-descending-specificity": null,
"no-empty-first-line": true,
"no-unknown-animations": true,

View File

@ -1,3 +1,12 @@
mkdocs-material-9.1.18+insiders-4.37.0 (2023-07-07)
* Added support for overriding social cards settings per page
* Added new social card default/only/image layout
* Improved resilience of optimize and social plugin
* Fixed rendering bugs for pruned navigation items
* Fixed jumping of content tabs anchor links when instant loading is enabled
* Fixed #5676: Optimize plugin doesn't check for pngquant
mkdocs-material-9.2.0 (2023-07-06)
* Added blogging support via built-in blog plugin

View File

@ -158,6 +158,9 @@
<a href="https://astral.sh/" target=_blank><img
src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-astral.png" height="58"
/></a>
<a href="https://oikolab.com/" target=_blank><img
src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-oikolab.png" height="58"
/></a>
</p>
<p>&nbsp;</p>

View File

@ -2,6 +2,15 @@
## Material for MkDocs Insiders
### 4.37.0 <small>July 7, 2023</small> { id="4.37.0" }
- Added support for overriding social cards settings per page
- Added new social card `default/only/image` layout
- Improved resilience of optimize and social plugin
- Fixed rendering bugs for pruned navigation items
- Fixed jumping of content tabs anchor links when instant loading is enabled
- Fixed #5676: Optimize plugin doesn't check for `pngquant`
### 4.36.1 <small>June 23, 2023</small> { id="4.36.1" }
- Fixed #5618: Date comparison breaking for drafts in blog plugin

View File

@ -198,6 +198,7 @@ You can cancel your sponsorship anytime.[^5]
[![Evergiving]](https://www.evergiving.com/){ target=_blank title="Evergiving" }
[![Koor]](https://koor.tech/){ target=_blank title="Koor" }
[![Astral]](https://astral.sh/){ target=_blank title="Astral" }
[![Oikolab]](https://oikolab.com/){ target=_blank title="Oikolab" }
</div>
@ -232,6 +233,7 @@ You can cancel your sponsorship anytime.[^5]
[Evergiving]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-evergiving.png
[Koor]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-koor.png
[Astral]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-astral.png
[Oikolab]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/sponsor-oikolab.png
<hr />

View File

@ -10106,6 +10106,7 @@
"simple/arduino",
"simple/argo",
"simple/argos",
"simple/ariakit",
"simple/arkecosystem",
"simple/arlo",
"simple/arm",
@ -11612,6 +11613,7 @@
"simple/prestashop",
"simple/presto",
"simple/prettier",
"simple/pretzel",
"simple/prevention",
"simple/prezi",
"simple/prime",
@ -11718,6 +11720,7 @@
"simple/realm",
"simple/reason",
"simple/reasonstudios",
"simple/recoil",
"simple/red",
"simple/redbubble",
"simple/reddit",
@ -11760,6 +11763,7 @@
"simple/ring",
"simple/riotgames",
"simple/ripple",
"simple/riscv",
"simple/riseup",
"simple/roamresearch",
"simple/roblox",
@ -11879,6 +11883,7 @@
"simple/simplenote",
"simple/sinaweibo",
"simple/singlestore",
"simple/sitecore",
"simple/sitepoint",
"simple/sketch",
"simple/sketchfab",
@ -12098,6 +12103,7 @@
"simple/thingiverse",
"simple/thinkpad",
"simple/threadless",
"simple/threads",
"simple/threedotjs",
"simple/threema",
"simple/thumbtack",
@ -12280,6 +12286,7 @@
"simple/wappalyzer",
"simple/warnerbros",
"simple/warp",
"simple/wasabi",
"simple/wasmcloud",
"simple/wasmer",
"simple/wattpad",

View File

@ -227,6 +227,21 @@ The following configuration options are available for card generation:
[![Layout default invert]][Layout default invert]
=== "`default/only/image`"
``` yaml
plugins:
- social:
cards_layout: default/only/image
cards_layout_options:
background_image: layouts/background.png
```
This layout will only show the given background image and scale to fit:
[![Layer background image]][Layer background image]
All [`default`][default layouts] layouts make use of the following
[template variables]:
@ -500,7 +515,8 @@ comes with CJK characters, e.g. one from the `Noto Sans` font family:
``` yaml
plugins:
- social:
cards_font: Noto Sans SC
cards_layout_options:
font_family: Noto Sans SC
```
=== "Chinese (Traditional)"
@ -508,7 +524,8 @@ comes with CJK characters, e.g. one from the `Noto Sans` font family:
``` yaml
plugins:
- social:
cards_font: Noto Sans TC
cards_layout_options:
font_family: Noto Sans TC
```
=== "Japanese"
@ -516,7 +533,8 @@ comes with CJK characters, e.g. one from the `Noto Sans` font family:
``` yaml
plugins:
- social:
cards_font: Noto Sans JP
cards_layout_options:
font_family: Noto Sans JP
```
=== "Korean"
@ -524,9 +542,79 @@ comes with CJK characters, e.g. one from the `Noto Sans` font family:
``` yaml
plugins:
- social:
cards_font: Noto Sans KR
cards_layout_options:
font_family: Noto Sans KR
```
### Changing the layout
[:octicons-tag-24: insiders-4.37.0][Insiders] ·
:octicons-beaker-24: Experimental
If you want to use a different layout for a single page (e.g. your landing
page), you can use the `social` front matter property together with the
[`cards_layout`](#+social.cards_layout) key, exactly as in `mkdocs.yml`:
``` yaml
---
social:
cards_layout: custom
---
# Headline
...
```
You can apply those changes for entire subtrees of your documentation, e.g.,
to generate different social cards for your blog and API reference, by using
the [built-in meta plugin].
[built-in meta plugin]: ../reference/index.md#built-in-meta-plugin
### Parametrizing the layout
[:octicons-tag-24: insiders-4.37.0][Insiders] ·
:octicons-beaker-24: Experimental
Besides changing the entire layout, you can override all options that a layout
exposes. This means you can parametrize social cards with custom front matter
properties, such as `tags`, `date`, `author` or anything you can think of.
Simply define [`cards_layout_options`](#+social.cards_layout_options):
``` yaml
---
social:
cards_layout_options:
background_color: blue # Change background color
background_image: null # Remove background image
---
# Headline
...
```
You can apply those changes for entire subtrees of your documentation, e.g.,
to generate different social cards for your blog and API reference, by using
the [built-in meta plugin].
### Disabling social cards
[:octicons-tag-24: insiders-4.37.0][Insiders] ·
:octicons-beaker-24: Experimental
If you wish to disable social cards for a page, simply add the following to the
front matter of the Markdown document:
``` yaml
---
social:
cards: false
---
# Headline
...
```
## Customization
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
@ -696,7 +784,7 @@ backgrounds:
size: { width: 1200, height: 630 }
layers:
- background:
image: layouts/background.jpg
image: layouts/background.png
```
![Layer background image]
@ -707,7 +795,7 @@ backgrounds:
size: { width: 1200, height: 630 }
layers:
- background:
image: layouts/background.jpg
image: layouts/background.png
color: "#4051b5ee" # (1)!
```
@ -917,6 +1005,49 @@ This will add two circles to the background:
![Layer icon circles]
### Tags
The new [built-in social plugin] gives full flexibility of the meta tags that
are added to your site, which are necessary to instruct services like Twitter
or Discord how to display your social card. All default layouts use the following
set of tags, which you can copy to your layout and adapt:
``` yaml
definitions:
- &page_title_with_site_name >-
{%- if not page.is_homepage -%}
{{ page.meta.get("title", page.title) }} - {{ config.site_name }}
{%- else -%}
{{ page.meta.get("title", page.title) }}
{%- endif -%}
- &page_description >-
{{ page.meta.get("description", config.site_description) or "" }}
tags:
og:type: website
og:title: *page_title_with_site_name
og:description: *page_description
og:image: "{{ image.url }}"
og:image:type: "{{ image.type }}"
og:image:width: "{{ image.width }}"
og:image:height: "{{ image.height }}"
og:url: "{{ page.canonical_url }}"
twitter:card: summary_large_image
twitter.title: *page_title_with_site_name
twitter:description: *page_description
twitter:image: "{{ image.url }}"
```
Note that this examples makes use of [YAML anchors] to minify repetition. The
`definitions` property is solely intended for the definition on aliases that
can then be referenced with anchors.
[YAML anchors]: https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/
__Are you missing something? Please [open a discussion] and let us know!__
[additional icons]: ./changing-the-logo-and-icons.md#additional-icons

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm6-12H6C2.69 0 0 2.69 0 6v12c0 3.31 2.69 6 6 6h12c3.31 0 6-2.69 6-6V6c0-3.31-2.69-6-6-6Zm5 18c0 2.76-2.24 5-5 5H6c-2.76 0-5-2.24-5-5V6c0-2.76 2.24-5 5-5h12c2.76 0 5 2.24 5 5v12ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5ZM18 2H6C3.79 2 2 3.79 2 6v12c0 2.21 1.79 4 4 4h12c2.21 0 4-1.79 4-4V6c0-2.21-1.79-4-4-4Zm-6 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Zm0-6a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0Zm2.5-2.5a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5Z"/></svg>

After

Width:  |  Height:  |  Size: 909 B

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.004 13c0 .744-.925.7-.925.7h-.925v-1.343h.925c.952-.007.925.644.925.644m-1.85-2.693h.704c.732.04.705.584.705.584 0 .677-.81.688-.81.688h-.6zm1.679 1.536s.633-.27.627-.985c0 0 .096-1.173-1.458-1.316h-1.724v4.917h1.977s1.65.004 1.65-1.388c0 0 .04-.947-1.072-1.228M8.37 8.58h7.258v6.84H8.371zM4.633 13c0 .744-.925.7-.925.7h-.925v-1.343h.925c.952-.007.925.644.925.644m-1.85-2.693h.705c.732.04.704.584.704.584 0 .677-.81.688-.81.688h-.599zm1.679 1.536s.633-.27.627-.985c0 0 .097-1.173-1.457-1.316H1.908v4.917h1.976s1.651.004 1.651-1.388c0 0 .04-.947-1.073-1.228M0 8.58h7.259v6.84H0zm22.52 1.316v.908s-.887-.545-1.867-.556c0 0-1.828-.036-1.91 1.752 0 0-.066 1.645 1.888 1.738 0 0 .82.099 1.932-.61v.94s-1.492.887-3.22.204c0 0-1.454-.53-1.509-2.272 0 0-.06-1.79 1.878-2.385 0 0 .517-.198 1.447-.11 0 0 .556.055 1.36.39m-5.778 5.525H24V8.58h-7.259Z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 8.57v6.857h-6.857V8.57H24Zm-8.571 0v6.857H8.57V8.57h6.858Zm-8.572 0v6.857H0V8.57h6.857Zm14.03 1.459c-.31 0-.588.046-.836.137a1.732 1.732 0 0 0-1.048 1.018 2.213 2.213 0 0 0-.142.812c0 .307.045.582.136.827.09.245.221.452.392.622.17.169.38.298.626.388.247.09.525.135.833.135.232 0 .454-.025.664-.077.21-.05.396-.12.556-.208v-.735a2.067 2.067 0 0 1-1.106.312c-.26 0-.483-.05-.667-.148a.986.986 0 0 1-.419-.431 1.491 1.491 0 0 1-.144-.685c0-.268.05-.495.15-.682a1.014 1.014 0 0 1 .43-.428c.187-.1.413-.148.678-.148.192 0 .375.025.55.076a1.779 1.779 0 0 1 .484.225v-.751a2.255 2.255 0 0 0-.53-.193 2.692 2.692 0 0 0-.608-.066Zm-8.94.041H10.5v3.857h1.537c.304 0 .564-.045.781-.135.217-.09.384-.217.501-.383.117-.165.176-.363.176-.593a.977.977 0 0 0-.181-.596 1.028 1.028 0 0 0-.522-.359.866.866 0 0 0 .372-.321.884.884 0 0 0 .126-.477c0-.32-.117-.566-.351-.737-.235-.17-.565-.256-.991-.256Zm-8.57 0H1.928v3.857h1.536c.305 0 .565-.045.782-.135a1.12 1.12 0 0 0 .5-.383 1 1 0 0 0 .176-.593.977.977 0 0 0-.18-.596 1.027 1.027 0 0 0-.523-.359.866.866 0 0 0 .373-.321.884.884 0 0 0 .126-.477c0-.32-.117-.566-.352-.737-.234-.17-.564-.256-.99-.256Zm8.597 2.19c.479 0 .718.177.718.529a.436.436 0 0 1-.189.38c-.125.088-.306.132-.54.132h-.682v-1.04h.693Zm-8.572 0c.48 0 .719.177.719.529a.436.436 0 0 1-.189.38c-.126.088-.306.132-.54.132H2.71v-1.04h.692Zm8.472-1.564c.416 0 .624.153.624.458a.453.453 0 0 1-.16.37c-.106.088-.261.132-.464.132h-.593v-.96h.593Zm-8.571 0c.416 0 .624.153.624.458a.452.452 0 0 1-.16.37c-.107.088-.262.132-.464.132H2.71v-.96h.593Z"/></svg>

Before

Width:  |  Height:  |  Size: 922 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.315 0H2.382v6.022h5.933V3.506l9.618 8.45-9.618 8.538V8.99H2.382V24h5.933l13.303-12.045Z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.983.004a.142.142 0 0 0-.086.067L7.491 4.237a.141.141 0 0 0 .053.193l12.251 7.074a.141.141 0 0 0 .193-.053l2.405-4.166a.141.141 0 0 0-.053-.193L10.09.02a.142.142 0 0 0-.107-.016ZM1.731 4.785a.14.14 0 0 0-.1.042.141.141 0 0 0-.042.1v14.147c0 .039.017.074.043.1a.14.14 0 0 0 .1.04h4.81a.14.14 0 0 0 .14-.14V4.926a.14.14 0 0 0-.14-.14zm18.171 7.697a.141.141 0 0 0-.107.014L7.544 19.57a.142.142 0 0 0-.053.193l2.406 4.166c.02.034.051.057.086.067a.145.145 0 0 0 .107-.016l12.25-7.072a.142.142 0 0 0 .053-.193l-2.405-4.166a.142.142 0 0 0-.086-.067z"/></svg>

Before

Width:  |  Height:  |  Size: 168 B

After

Width:  |  Height:  |  Size: 622 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.439.03 10.757 6.516a.305.305 0 0 0-.142.236v5.426l2.72 1.704v-5.54a.303.303 0 0 1 .143-.235l6.24-3.48a.286.286 0 0 1 .415.237v10.322a2.807 2.807 0 0 1-1.38 2.555 2.827 2.827 0 0 1-2.909-.02l-6.24-3.951-.03-.03a5.569 5.569 0 0 0-6.245.333 5.524 5.524 0 0 0-1.977 5.917 5.462 5.462 0 0 0 2.662 3.331A5.656 5.656 0 0 0 6.676 24a5.961 5.961 0 0 0 1.597-.236 5.544 5.544 0 0 0 3.43-2.919l.09-.236-2.308-1.474-.237.56a2.792 2.792 0 0 1-1.74 1.478 2.836 2.836 0 0 1-2.189-.236 2.738 2.738 0 0 1-1.36-1.704c-.413-1.42.414-2.949 1.805-3.45.294-.105.604-.153.916-.142a2.834 2.834 0 0 1 1.449.413l6.241 3.977h.03a5.558 5.558 0 0 0 2.898.797 5.968 5.968 0 0 0 1.597-.236 5.572 5.572 0 0 0 2.896-2.049 5.544 5.544 0 0 0 1.067-3.377V.266A.29.29 0 0 0 22.576 0a.293.293 0 0 0-.137.03z"/></svg>

After

Width:  |  Height:  |  Size: 851 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.09 8.862a3.017 3.018 0 0 0-2.615-2.43l-.245-.03a1.662 1.662 0 0 1-1.453-1.645v-.856a2.028 2.028 0 1 0-1.602-.02v.874a3.263 3.264 0 0 0 2.855 3.236l.245.032c.764.096 1.144.66 1.246 1.155.1.495-.03 1.163-.698 1.55a2.569 2.569 0 0 1-1.055.337l-3.68.346a4.212 4.212 0 0 0-1.71.546 3.02 3.02 0 0 0-1.468 3.257 3.017 3.018 0 0 0 2.615 2.43l.245.032a1.662 1.662 0 0 1 1.453 1.644v.777a2.03 2.03 0 1 0 1.602.016v-.793a3.263 3.264 0 0 0-2.856-3.236l-.244-.032c-.764-.096-1.145-.66-1.246-1.155-.1-.495.03-1.163.697-1.55a2.569 2.569 0 0 1 1.057-.337l3.68-.345a4.212 4.212 0 0 0 1.71-.546 3.023 3.024 0 0 0 1.467-3.258zm-2.653 4.708a5.71 5.71 0 0 1-.436.06l-1.543.147 1.93 2.119a3.47 3.47 0 0 1 .906 2.34H16.9a5.07 5.07 0 0 0-1.325-3.42zm-5.003-3.11a4.65 4.65 0 0 1 .546-.08l1.427-.136L9.469 8.12a3.47 3.47 0 0 1-.905-2.34H6.963c0 1.267.47 2.483 1.324 3.42z"/></svg>

After

Width:  |  Height:  |  Size: 927 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.95.051h16.947v6.21L13.473 21.004l-.524.734-5.789-6.842c4.103-.74 6.21-3.896 6.21-7.37C13.37 4.05 11.263.472 6.95.05zm-5.475 13.37 8.74 10.528H0V3.419h5.474c2.945 0 4.422 1.999 4.422 4.107 0 2.107-1.477 4.21-4.422 4.21H1.475v1.685zm14.07 10.528H24V12.157l-7.685 10.738-.77 1.054z"/></svg>

After

Width:  |  Height:  |  Size: 359 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0Zm0 3.266A8.714 8.714 0 0 1 20.734 12c0 4.815-3.92 8.734-8.734 8.734A8.73 8.73 0 0 1 3.266 12 8.73 8.73 0 0 1 12 3.266Zm6.701 3.847-2.878 1.839c.87 1.379.991 2.879.314 4.403-.774 1.838-2.613 3.41-4.694 4.16a7.337 7.337 0 0 0 2.662-.87c2.032-1.137 3.194-3.073 3.29-5.468v-.218h2.83c-.168-1.427-.725-2.734-1.524-3.846Zm-.87 4.282c-.17 2.42-1.428 4.476-3.508 5.613a8.13 8.13 0 0 1-3.92.992 9.19 9.19 0 0 1-3.194-.58c1.259.774 2.662 1.21 4.113 1.21h.025c2.613 0 4.984-1.38 6.314-3.727l.121-.193 1.621 1.04A8.166 8.166 0 0 0 20.3 12c0-.194-.025-.387-.025-.605zm.072 3.943c-1.427 2.323-3.846 3.726-6.556 3.726-2.637 0-5.105-1.306-6.847-3.532 1.33 2.807 4.185 4.766 7.5 4.766a8.267 8.267 0 0 0 7.185-4.161z"/></svg>

After

Width:  |  Height:  |  Size: 842 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.743 11.123a8.547 8.547 0 0 0-.315-.142c-.185-3.414-2.05-5.368-5.182-5.388h-.042c-1.874 0-3.431.8-4.39 2.255l1.722 1.181c.716-1.087 1.84-1.319 2.669-1.319h.028c1.031.007 1.81.307 2.313.892.367.425.612 1.014.733 1.756a13.176 13.176 0 0 0-2.96-.143c-2.977.172-4.892 1.908-4.763 4.321.065 1.224.675 2.277 1.717 2.965.88.582 2.015.866 3.195.802 1.557-.086 2.778-.68 3.63-1.766.648-.825 1.057-1.894 1.238-3.241.742.448 1.292 1.037 1.596 1.745.517 1.205.547 3.184-1.068 4.797-1.415 1.414-3.116 2.025-5.686 2.044-2.851-.02-5.008-.935-6.41-2.717-1.313-1.67-1.991-4.08-2.016-7.165.025-3.085.703-5.496 2.016-7.165 1.402-1.782 3.558-2.696 6.41-2.717 2.871.02 5.065.94 6.521 2.73.714.879 1.252 1.983 1.607 3.27l2.018-.538c-.43-1.585-1.107-2.95-2.027-4.083C18.43 1.2 15.7.024 12.185 0h-.014C8.66.024 5.963 1.205 4.15 3.51c-1.614 2.05-2.446 4.905-2.474 8.482v.016c.028 3.578.86 6.431 2.473 8.482 1.813 2.305 4.512 3.486 8.022 3.51h.014c3.12-.022 5.319-.839 7.13-2.649 2.371-2.368 2.3-5.336 1.518-7.158-.56-1.307-1.629-2.368-3.09-3.07zm-5.387 5.065c-1.305.074-2.66-.512-2.728-1.766-.05-.93.662-1.969 2.808-2.092.246-.015.487-.021.724-.021.78 0 1.508.075 2.171.22-.247 3.088-1.697 3.59-2.975 3.66z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.483 3.517A11.91 11.91 0 0 0 12 0a11.91 11.91 0 0 0-8.483 3.517A11.91 11.91 0 0 0 0 12a11.91 11.91 0 0 0 3.517 8.483A11.91 11.91 0 0 0 12 24a11.91 11.91 0 0 0 8.483-3.517A11.91 11.91 0 0 0 24 12a11.91 11.91 0 0 0-3.517-8.483Zm1.29 7.387-5.16-4.683-5.285 4.984-2.774 2.615V9.932l4.206-3.994 3.146-2.969c3.163 1.379 5.478 4.365 5.867 7.935zm-.088 2.828a10.632 10.632 0 0 1-1.025 2.951l-2.952-2.668v-3.87Zm-8.183-11.47-2.227 2.103-2.739 2.598v-4.17A9.798 9.798 0 0 1 12 2.155c.513 0 1.007.035 1.502.106zM6.398 13.891l-4.083-3.658a9.744 9.744 0 0 1 1.078-2.987L6.398 9.95zm0-9.968v3.129l-1.75-1.573a8.623 8.623 0 0 1 1.75-1.556Zm-4.189 9.102 5.284 4.736 5.302-4.983 2.74-2.598v3.817l-7.423 7.016a9.823 9.823 0 0 1-5.903-7.988Zm8.306 8.695 5.02-4.754v4.206a9.833 9.833 0 0 1-3.553.654c-.495 0-.99-.035-1.467-.106zm7.176-1.714v-3.11l1.714 1.555a9.604 9.604 0 0 1-1.714 1.555z"/></svg>

After

Width:  |  Height:  |  Size: 950 B

File diff suppressed because one or more lines are too long

2464
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -56,10 +56,11 @@
"@types/fuzzaldrin-plus": "^0.6.2",
"@types/html-minifier": "^4.0.2",
"@types/lunr": "^2.3.4",
"@types/node": "^20.3.3",
"@types/node": "^20.4.1",
"@types/resize-observer-browser": "^0.1.7",
"@types/sass": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"cssnano": "5.1.0",
@ -75,20 +76,20 @@
"html-minifier": "^4.0.0",
"material-design-color": "^2.3.2",
"material-shadows": "^3.0.1",
"npm-check-updates": "^16.10.13",
"npm-check-updates": "^16.10.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss": "^8.4.25",
"postcss-dir-pseudo-class": "^8.0.0",
"postcss-inline-svg": "^6.0.0",
"postcss-logical": "5.0.4",
"postcss-pseudo-is": "^0.3.0",
"preact": "^10.15.1",
"preact": "^10.16.0",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"simple-icons": "^9.4.0",
"stylelint": "^15.9.0",
"simple-icons": "^9.5.0",
"stylelint": "^15.10.1",
"stylelint-config-recess-order": "^4.2.0",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-scss": "^5.0.1",
"svgo": "3.0.0",