1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-14 19:07:41 +01:00

Merge pull request #3218 from squidfunk/feature/insiders-ghost-pepper

Material for MkDocs 8
This commit is contained in:
Martin Donath 2021-11-28 15:00:34 +01:00 committed by GitHub
commit 79c56f58c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
281 changed files with 3247 additions and 3299 deletions

View File

@ -1 +1 @@
last 4 years
last 2 years

View File

@ -34,11 +34,7 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
# Makefiles
# Python
[*.py]
indent_style = space
indent_size = 4
# Makefiles
[Makefile]
indent_style = tab
indent_size = 8

1
.gitignore vendored
View File

@ -43,6 +43,7 @@
*.tsbuildinfo
.cache
.eslintcache
__pycache__
# -----------------------------------------------------------------------------
# General

View File

@ -62,6 +62,12 @@
"font-family-name-quotes": "always-where-recommended",
"font-weight-notation": "numeric",
"hue-degree-notation": "number",
"length-zero-no-unit": [
true,
{
"ignore": ["custom-properties"]
}
],
"linebreaks": "unix",
"media-feature-name-no-unknown": null,
"no-descending-specificity": null,
@ -80,6 +86,7 @@
"selector-class-pattern": null,
"selector-combinator-space-before": null,
"selector-descendant-combinator-no-non-space": null,
"selector-id-pattern": null,
"selector-max-empty-lines": 0,
"selector-max-id": 0,
"selector-no-qualifying-type": null,
@ -89,6 +96,7 @@
"unicode-bom": "never",
"unit-allowed-list": [
"%",
"ch",
"dppx",
"deg",
"em",
@ -141,6 +149,8 @@
"scss/double-slash-comment-whitespace-inside": "always",
"scss/at-extend-no-missing-placeholder": null,
"scss/no-duplicate-mixins": true,
"scss/no-global-function-names": null,
"scss/operator-no-newline-after": null,
"scss/operator-no-unspaced": true,
"scss/partial-no-import": true,
"scss/percent-placeholder-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",

View File

@ -101,9 +101,10 @@ assets may also be put in the `overrides` directory:
├─ partials/
│ ├─ integrations/ # Third-party integrations
│ │ ├─ analytics/ # Analytics integrations
│ │ ├─ analytics.html # Analytics setup
│ │ └─ disqus.html # Disqus
│ │ └─ analytics.html # Analytics setup
│ ├─ languages/ # Translation languages
│ ├─ content.html # Page content
│ ├─ copyright.html # Copyright and theme information
│ ├─ footer.html # Footer bar
│ ├─ header.html # Header bar
│ ├─ language.html # Translation setup
@ -111,7 +112,7 @@ assets may also be put in the `overrides` directory:
│ ├─ nav.html # Main navigation
│ ├─ nav-item.html # Main navigation item
│ ├─ palette.html # Color palette
│ ├─ search.html # Search box
│ ├─ search.html # Search interface
│ ├─ social.html # Social links
│ ├─ source.html # Repository information
│ ├─ source-file.html # Source file information
@ -192,28 +193,6 @@ The following template blocks are provided by the theme:
| `styles` | Wraps the style sheets (also extra sources) |
| `tabs` | Wraps the tabs navigation (if available) |
#### Additional variables
Besides template blocks, Material for MkDocs provides extra variables for parts
that cannot be overridden with template blocks (due to technical limitations of
the template engine). If you want to add further information after the _Made
with Material for MkDocs_ hint in the footer, add the following line to
`main.html`:
``` html
{% extends "base.html" %}
{% set extracopyright %}
<!-- Add additional copyright information here -->
{% endset %}
```
The following template variables are provided by the theme:
| Block name | Purpose |
|:------------------|:------------------------------------------------|
| `extracopyright` | Adds custom copyright information |
## Theme development
Material for MkDocs is built on top of [TypeScript], [RxJS] and [SASS], and

View File

@ -16,7 +16,7 @@ If not, we recommended using [`docker`][docker].
## Installation
!!! danger "8.0.0 Beta 1 is out!"
!!! danger "8.0.0 Beta 2 is out!"
Help test the latest version of Material for MkDocs, introducing many new
features and improvements like [code annotations], [anchor tracking] and

View File

@ -17,7 +17,7 @@ that new features are first exclusively released to sponsors as part of
</div>
<figcaption markdown>
The official documentation is built with Insiders
This documentation is built with Insiders
[squidfunk.github.io/mkdocs-material][Material for MkDocs]
</figcaption>

View File

@ -91,9 +91,9 @@ Now, when a new commit is pushed to either the `master` or `main` branches,
the static site is automatically built and deployed. Push your changes to see
the workflow in action.
If the GitHub Page doesn't show up after a few minutes, ensure the source branch
for your GitHub Page is set to `gh-pages` in your repository settings
`github.com/<username>/<repository>/settings/pages`.
If the GitHub Page doesn't show up after a few minutes, go to your
settings of your repository and ensure that the [publishing source branch]
for your GitHub Page is set to `gh-pages`.
Your documentation should shortly appear at `<username>.github.io/<repository>`.
@ -102,6 +102,7 @@ Your documentation should shortly appear at `<username>.github.io/<repository>`.
[personal access token]: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
[Insiders]: insiders/index.md
[GitHub secrets]: https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
[publishing source branch]: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site
### with MkDocs

View File

@ -287,7 +287,7 @@ only the `inline` modifier.
Use `inline` to align to the left (right for rtl languages).
__Important__: Admonitions that use the `inline` modifiers _must_ be declared
__Important__: admonitions that use the `inline` modifiers _must_ be declared
prior to the content block you want to place them beside. If there's
insufficient space to render the admonition next to the block, the admonition
will stretch to the full width of the viewport, e.g. on mobile viewports.
@ -299,7 +299,7 @@ will stretch to the full width of the viewport, e.g. on mobile viewports.
Following is a list of type qualifiers provided by Material for MkDocs, whereas
the default type, and thus fallback for unknown type qualifiers, is `note`:
`note`{ #type-note }, ~~`seealso`~~ [^1]
`note`{ #type-note }
: !!! note
@ -395,13 +395,6 @@ the default type, and thus fallback for unknown type qualifiers, is `note`:
euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo
purus auctor massa, nec semper lorem quam in massa.
[^1]:
The `seealso` qualifier was originally adapted from the `readthedocs` theme,
in order to make it easier for authors to migrate to Material for MkDocs.
However, when the title is omitted, the admonition extension will render it
as `Seealso`, which is incorrect English. For this reason, it was deprecated
in :octicons-tag-24: 7.1.5 and will be removed in :octicons-tag-24: 8.0.0.
## Customization
### Custom admonitions

View File

@ -90,14 +90,14 @@ shortcode for a given language.
_Example_:
```` markdown
``` python
``` py
import tensorflow as tf
```
````
_Result_:
``` python
``` py
import tensorflow as tf
```
@ -183,7 +183,7 @@ allows to split large code blocks for readability.
_Example_:
```` markdown
``` python linenums="1"
``` py linenums="1"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
@ -194,7 +194,7 @@ def bubble_sort(items):
_Result_:
``` python linenums="1"
``` py linenums="1"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
@ -214,7 +214,7 @@ at `1`, regardless of the starting line number specified as part of
_Example_:
```` markdown
``` python hl_lines="2 3"
``` py hl_lines="2 3"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
@ -225,7 +225,7 @@ at `1`, regardless of the starting line number specified as part of
_Result_:
``` python linenums="1" hl_lines="2 3"
``` py linenums="1" hl_lines="2 3"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
@ -238,7 +238,7 @@ at `1`, regardless of the starting line number specified as part of
_Example_:
```` markdown
``` python hl_lines="2-5"
``` py hl_lines="2-5"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
@ -249,7 +249,7 @@ at `1`, regardless of the starting line number specified as part of
_Result_:
``` python linenums="1" hl_lines="2-5"
``` py linenums="1" hl_lines="2-5"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):

View File

@ -72,32 +72,6 @@ description: Nullam urna elit, malesuada eget finibus ut, ac tortor.
This will set the `meta` tag containing the site description inside the
document `head` for the current page to the provided value.
<div class="mdx-deprecated" markdown>
### Adding a web app manifest
[:octicons-tag-24: 3.1.0][manifest support] ·
:octicons-archive-24: Deprecated ·
:octicons-trash-24: 8.0.0
A [web app manifest] is a simple JSON file that specifies how your web
application should behave when installed on the user's mobile device or desktop,
which can be set via `mkdocs.yml`:
``` yaml
extra:
manifest: manifest.webmanifest # (1)
```
1. This option was deprecated, as it's not widely used and the same behavior
can be achieved with [theme extension].
[web app manifest]: https://web.dev/add-manifest/
[manifest support]: https://github.com/squidfunk/mkdocs-material/releases/tag/3.1.0
[theme extension]: ../customization.md#extending-the-theme
</div>
## Customization
### Using metadata in templates
@ -116,6 +90,7 @@ e.g. to add indexing policies for search engines via the `robots` property:
{% endblock %}
```
[theme extension]: ../customization.md#extending-the-theme
[overriding blocks]: ../customization.md#overriding-blocks
#### on a single page

View File

@ -4,40 +4,83 @@ template: overrides/main.html
# Adding a comment system
Material for MkDocs is natively integrated with [Disqus], a comment system that
provides a wide range of features like social integrations, user profiles, as
well as spam and moderation tools. Of course, other comment systems can be
integrated, too.
Material for MkDocs allows to easily add the third-party comment system of your
choice to the footer of every page by using [theme extension]. As an example,
we'll be integrating [Disqus] a wildly popular comment provider, but others
can be integrate with the same principles
[Disqus]: https://disqus.com/
## Configuration
### Disqus
[:octicons-tag-24: 1.1.0][Disqus support] ·
:octicons-milestone-24: Default: _none_
First, ensure you've set [`site_url`][site_url] in `mkdocs.yml`. Then, to
integrate Material for MkDocs with [Disqus], create an account and a site
giving you a [shortname], and add it to `mkdocs.yml`:
``` yaml
extra:
disqus: <shortname>
```
This will insert a comment system on every page, except the index page.
[Disqus support]: https://github.com/squidfunk/mkdocs-material/releases/tag/1.1.0
[site_url]: https://www.mkdocs.org/user-guide/configuration/#site_url
[shortname]: https://help.disqus.com/en/articles/1717111-what-s-a-shortname
## Customization
### Selective integration
### Disqus integration
When [Metadata] is enabled, Disqus can be enabled or disabled for a document
In order to integrate a third-party comment provider offering a JavaScript-based
solution, follow the guide on [theme extension], copy the contents from the
[`content.html`][content partial] partial and create a file at the same location
in the `overrides` folder:
=== ":octicons-file-code-16: overrides/partials/content.html"
``` html
<!-- Add copied contents from original content.html here -->
<!-- Get setting from mkdocs.yml, but allow page-level overrides -->
{% set disqus = config.extra.disqus %}
{% if page and page.meta and page.meta.disqus is string %}
{% set disqus = page.meta.disqus %}
{% endif %}
<!-- Inject Disqus into current page -->
{% if not page.is_homepage and disqus %}
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
<div id="disqus_thread"></div>
<script>
var disqus_config = function() {
this.page.url = "{{ page.canonical_url }}"
this.page.identifier =
"{{ page.canonical_url | replace(config.site_url, '') }}" // (1)
}
/* Set up for the first time */
if (typeof DISQUS === "undefined") {
var script = document.createElement("script")
script.async = true
script.src = "https://{{ disqus }}.disqus.com/embed.js"
script.setAttribute("data-timestamp", Date.now())
/* Inject script tag */
document.body.appendChild(script)
/* Set up on navigation (instant loading) */
} else {
DISQUS.reset({
reload: true,
config: disqus_config
})
}
</script>
{% endif %}
```
1. Ensure you've set [`site_url`][site_url] in `mkdocs.yml`.
=== ":octicons-file-code-16: mkdocs.yml"
``` yaml
extra:
disqus: <shortname> # (1)
```
1. Add your Disqus [shortname] here.
[theme extension]: ../customization.md#extending-the-theme
[content partial]: https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/content.html
[shortname]: https://help.disqus.com/en/articles/1717111-what-s-a-shortname
#### on a single page
When [Metadata] is enabled, Disqus can be enabled or disabled for a single page
with custom front matter. Add the following lines at the top of a Markdown file:
=== ":octicons-check-circle-fill-16: Enabled"
@ -63,20 +106,3 @@ with custom front matter. Add the following lines at the top of a Markdown file:
```
[Metadata]: extensions/python-markdown.md#metadata
### Other comment systems
In order to integrate another JavaScript-based comment system provider, you can
[extend the theme], create a new `main.html` in `overrides` and [override the
`disqus` block][overriding blocks]:
``` html
{% extends "base.html" %}
{% block disqus %}
<!-- Add custom comment system integration here -->
{% endblock %}
```
[extend the theme]: ../customization.md#extending-the-theme
[overriding blocks]: ../customization.md#overriding-blocks

View File

@ -184,7 +184,7 @@ the guide on [theme extension] and create a new partial in the `overrides`
folder. Then, import the [translations] of the language as a fallback and only
adjust the ones you want to override:
=== ":octicons-file-code-16: partials/languages/custom.html"
=== ":octicons-file-code-16: overrides/partials/languages/custom.html"
``` html
<!-- Import translations for language and fallback -->

View File

@ -399,9 +399,9 @@ The following configuration options are supported:
`linenums_style`{ #highlight-linenums-style }
: :octicons-milestone-24: Default: `table` The [Highlight] extension
provides three ways to add line numbers, all of which are supported by
Material for MkDocs. While `table` wraps a code block in a table, `inline`
and `pymdownx-inline` render line numbers as part of the line itself:
provides three ways to add line numbers, two of which are supported by
Material for MkDocs. While `table` wraps a code block in a `<table>`
element, `pymdownx-inline` renders line numbers as part of the line itself:
``` yaml
markdown_extensions:
@ -625,10 +625,10 @@ The following configuration options are supported:
`alternate_style`{ #tabbed-alternate-style }
: :octicons-milestone-24: Default: `false` · [:octicons-tag-24: 7.3.1]
[Tabbed alternate support] This option enables the [alternate style] of
content tabs, which has [better behavior on mobile viewports], and thus
is strongly recommended:
: [:octicons-tag-24: 7.3.1][Tabbed alternate support] ·
:octicons-milestone-24: Default: `false` · :octicons-alert-24: Required
This option enables the content tabs [alternate style], which has
[better behavior on mobile viewports], and is the only supported style:
``` yaml
markdown_extensions:

View File

@ -291,7 +291,7 @@ JavaScript-based tracking solution, just follow the guide on [theme extension]
and create a new partial in the `overrides` folder. The name of the partial is
used to configure the custom integration via `mkdocs.yml`:
=== ":octicons-file-code-16: partials/integrations/analytics/custom.html"
=== ":octicons-file-code-16: overrides/partials/integrations/analytics/custom.html"
``` html
<script>
@ -331,7 +331,7 @@ used to configure the custom integration via `mkdocs.yml`:
### Custom site feedback
A custom feedback widget integation just needs to process the events that are
A custom feedback widget integration just needs to process the events that are
generated by users interacting with the feedback widget with the help of some
[additional JavaScript]:
@ -342,9 +342,12 @@ generated by users interacting with the feedback widget with the help of some
feedback.addEventListener("submit", function(ev) {
ev.preventDefault()
/* Retrieve and send feedback */
/* Retrieve page and feedback value */
var page = document.location.pathname
var data = ev.submitter.getAttribute("data-md-value")
/* Send feedback value */
console.log(page, data)
})
```

View File

@ -127,7 +127,7 @@ The following configuration options are supported:
prebuild_index: true
```
Note that this configuration option was deprecated, as the [new search
Note that this configuration option was removed, as the [new search
plugin] generates up to [50% smaller] search indexes, doubling search
performance.

View File

@ -602,7 +602,7 @@ matches the new structure:
- Support for displaying stars and forks for GitLab repositories
- Support for scroll snapping of sidebars and search results
- Reduced HTML and CSS footprint due to deprecation of Internet Explorer support
- Slight facelifting of some UI elements (Admonitions, tables, ...)
- Slight facelifting of some UI elements (admonitions, tables, ...)
[CSS variables]: setup/changing-the-colors.md#custom-colors
[icon integration]: reference/icons-emojis.md#search

View File

@ -5,4 +5,3 @@
{% block content %}
<h1>404 - Not found</h1>
{% endblock %}
{% block disqus %}{% endblock %}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -13,11 +13,6 @@
{% elif config.site_description %}
<meta name="description" content="{{ config.site_description }}">
{% endif %}
{% if page and page.meta and page.meta.keywords %}
<meta name="keywords" content="{{ page.meta.keywords }}">
{% elif config.site_keywords %}
<meta name="keywords" content="{{ config.site_keywords }}">
{% endif %}
{% if page and page.meta and page.meta.author %}
<meta name="author" content="{{ page.meta.author }}">
{% elif config.site_author %}
@ -27,7 +22,7 @@
<link rel="canonical" href="{{ page.canonical_url }}">
{% endif %}
<link rel="icon" href="{{ config.theme.favicon | url }}">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-7.3.6">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.0.0">
{% endblock %}
{% block htmltitle %}
{% if page and page.meta and page.meta.title %}
@ -39,7 +34,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.03d4cea5.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.ad626c1e.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
@ -61,15 +56,13 @@
font.text | replace(' ', '+') + ':300,400,400i,700%7C' +
font.code | replace(' ', '+')
}}&display=fallback">
<style>:root{--md-text-font-family:"{{ font.text }}";--md-code-font-family:"{{ font.code }}"}</style>
<style>:root{--md-text-font:"{{ font.text }}";--md-code-font:"{{ font.code }}"}</style>
{% endif %}
{% endblock %}
{% if config.extra.manifest %}
<link rel="manifest" href="{{ config.extra.manifest | url }}" crossorigin="use-credentials">
{% endif %}
{% for path in config["extra_css"] %}
<link rel="stylesheet" href="{{ path | url }}">
{% endfor %}
{% include "partials/javascripts/base.html" %}
{% block analytics %}
{% include "partials/integrations/analytics.html" %}
{% endblock %}
@ -89,7 +82,6 @@
<body dir="{{ direction }}">
{% endif %}
{% set features = config.theme.features or [] %}
{% include "partials/javascripts/base.html" %}
{% if not config.theme.palette is mapping %}
{% include "partials/javascripts/palette.html" %}
{% endif %}
@ -106,13 +98,25 @@
</div>
<div data-md-component="announce">
{% if self.announce() %}
<aside class="md-banner md-announce">
<div class="md-banner__inner md-announce__inner md-grid md-typeset">
<aside class="md-banner">
<div class="md-banner__inner md-grid md-typeset">
{% block announce %}{% endblock %}
</div>
</aside>
{% endif %}
</div>
{% if config.extra.version %}
<div data-md-component="outdated" hidden>
<aside class="md-banner md-banner--warning">
{% if self.outdated() %}
<div class="md-banner__inner md-grid md-typeset">
{% block outdated %}{% endblock %}
</div>
{% include "partials/javascripts/outdated.html" %}
{% endif %}
</aside>
</div>
{% endif %}
{% block header %}
{% include "partials/header.html" %}
{% endblock %}
@ -156,25 +160,7 @@
<div class="md-content" data-md-component="content">
<article class="md-content__inner md-typeset">
{% block content %}
{% if page.edit_url %}
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
{% include ".icons/material/pencil.svg" %}
</a>
{% endif %}
{% if not "\x3ch1" in page.content %}
<h1>{{ page.title | d(config.site_name, true)}}</h1>
{% endif %}
{{ page.content }}
{% if page and page.meta %}
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-file.html" %}
{% endif %}
{% endif %}
{% endblock %}
{% block disqus %}
{% include "partials/integrations/disqus.html" %}
{% include "partials/content.html" %}
{% endblock %}
</article>
</div>
@ -198,9 +184,11 @@
"base": base_url,
"features": features,
"translations": {},
"search": "assets/javascripts/workers/search.8397ff9e.min.js" | url,
"version": config.extra.version or None
"search": "assets/javascripts/workers/search.4b3933ee.min.js" | url
} -%}
{%- if config.extra.version -%}
{%- set _ = app.update({ "version": config.extra.version }) -%}
{%- endif -%}
{%- set translations = app.translations -%}
{%- for key in [
"clipboard.copy",
@ -225,7 +213,7 @@
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.1e84347e.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.0cf2fc9f.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script>
{% endfor %}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3,7 +3,7 @@
-#}
{% extends "base.html" %}
{% block extrahead %}
<link rel="stylesheet" href="{{ 'overrides/assets/stylesheets/main.bf3dc0a9.min.css' | url }}">
<link rel="stylesheet" href="{{ 'overrides/assets/stylesheets/main.80c832e2.min.css' | url }}">
{% endblock %}
{% block announce %}
<a href="https://twitter.com/squidfunk">
@ -16,5 +16,5 @@
{% endblock %}
{% block scripts %}
{{ super() }}
<script src="{{ 'overrides/assets/javascripts/bundle.525231ca.min.js' | url }}"></script>
<script src="{{ 'overrides/assets/javascripts/bundle.a08d04cf.min.js' | url }}"></script>
{% endblock %}

View File

@ -0,0 +1,18 @@
{#-
This file was automatically generated - do not edit
-#}
{% if page.edit_url %}
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
{% include ".icons/material/pencil.svg" %}
</a>
{% endif %}
{% if not "\x3ch1" in page.content %}
<h1>{{ page.title | d(config.site_name, true)}}</h1>
{% endif %}
{{ page.content }}
{% if page and page.meta and (
page.meta.git_revision_date_localized or
page.meta.revision_date
) %}
{% include "partials/source-file.html" %}
{% endif %}

View File

@ -0,0 +1,16 @@
{#-
This file was automatically generated - do not edit
-#}
<div class="md-copyright">
{% if config.copyright %}
<div class="md-copyright__highlight">
{{ config.copyright }}
</div>
{% endif %}
{% if not config.extra.generator == false %}
Made with
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
Material for MkDocs
</a>
{% endif %}
</div>

View File

@ -1,7 +1,6 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/language.html" as lang with context %}
<footer class="md-footer">
{% if page.previous_page or page.next_page %}
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
@ -41,21 +40,10 @@
{% endif %}
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-footer-copyright">
{% if config.copyright %}
<div class="md-footer-copyright__highlight">
{{ config.copyright }}
</div>
{% endif %}
{% if not config.extra.generator == false %}
Made with
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
Material for MkDocs
</a>
{% endif %}
{{ extracopyright }}
</div>
{% include "partials/social.html" %}
{% include "partials/copyright.html" %}
{% if config.extra.social %}
{% include "partials/social.html" %}
{% endif %}
</div>
</div>
</footer>

View File

@ -1,12 +0,0 @@
{#-
This file was automatically generated - do not edit
-#}
{% set disqus = config.extra.disqus %}
{% if page and page.meta and page.meta.disqus is string %}
{% set disqus = page.meta.disqus %}
{% endif %}
{% if not page.is_homepage and disqus %}
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
<div id="disqus_thread"></div>
<script>var script,disqus_config=function(){this.page.url="{{ page.canonical_url }}",this.page.identifier="{{ page.canonical_url | replace(config.site_url, '') }}"};"undefined"==typeof DISQUS?((script=document.createElement("script")).async=!0,script.src="https://{{ disqus }}.disqus.com/embed.js",script.setAttribute("data-timestamp",Date.now()),document.body.appendChild(script)):DISQUS.reset({reload:!0,config:disqus_config})</script>
{% endif %}

View File

@ -1,4 +1,4 @@
{#-
This file was automatically generated - do not edit
-#}
<script>function __prefix(e){return new URL("{{ base_url }}",location).pathname+"."+e}function __get(e,t=localStorage){return JSON.parse(t.getItem(__prefix(e)))}</script>
<script>function __md_scope(e,t,_){return new URL(_||(t===localStorage?"{{ config.extra.scope | d(base_url) }}":"{{ base_url }}"),location).pathname+"."+e}function __md_get(e,t=localStorage,_){return JSON.parse(t.getItem(__md_scope(e,t,_)))}function __md_set(e,t,_=localStorage,o){try{_.setItem(__md_scope(e,_,o),JSON.stringify(t))}catch(e){}}</script>

View File

@ -0,0 +1,4 @@
{#-
This file was automatically generated - do not edit
-#}
<script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>

View File

@ -1,4 +1,4 @@
{#-
This file was automatically generated - do not edit
-#}
<script>var palette=__get("__palette");if(null!==palette&&"object"==typeof palette.color)for(var key in palette.color)document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
<script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)</script>

View File

@ -18,8 +18,7 @@
"search.result.other": "# ooreenstemmende dokumente",
"skip.link.title": "Slaan oor na inhoud",
"source.link.title": "Slaan oor na inhoud",
"source.revision.date": "Laaste opdatering",
"source.file.date.updated": "Laaste opdatering",
"source.file.date.updated": "Laaste opdatering",
"source.file.date.created": "Geskep",
"toc.title": "Inhoudsopgawe"
}[key] }}{% endmacro %}

View File

@ -19,7 +19,6 @@
"search.result.other": "نتائج البحث # مستندات",
"skip.link.title": "انتقل إلى المحتوى",
"source.link.title": "اذهب إلى المصدر",
"source.revision.date": "اخر تحديث",
"source.file.date.updated": "اخر تحديث",
"source.file.date.created": "خلقت",
"toc.title": "جدول المحتويات"

View File

@ -24,7 +24,6 @@
"search.result.more.other": "още # на тази страница",
"skip.link.title": "Към съдържанието",
"source.link.title": "Към хранилището",
"source.revision.date": "Последна промяна",
"source.file.date.updated": "Последна промяна",
"source.file.date.created": "Създаден",
"tabs.title": "Табове",

View File

@ -22,7 +22,6 @@
"search.result.other": "# টা ডকুমেন্ট",
"skip.link.title": "কনটেন্টে যান",
"source.link.title": "রিপোজিটরিতে যান",
"source.revision.date": "শেষ আপডেট",
"source.file.date.updated": "শেষ আপডেট",
"source.file.date.created": "তৈরি হয়েছে",
"tabs.title": "ট্যাব",

View File

@ -17,7 +17,6 @@
"search.result.other": "# documents coincidents",
"skip.link.title": "Salta el contingut",
"source.link.title": "Ves al repositori",
"source.revision.date": "Darrera actualització",
"source.file.date.updated": "Darrera actualització",
"source.file.date.created": "Creada",
"toc.title": "Taula de continguts"

View File

@ -17,7 +17,6 @@
"search.result.other": "Nalezené dokumenty: #",
"skip.link.title": "Přeskočit obsah",
"source.link.title": "Přejít do repozitáře",
"source.revision.date": "Poslední aktualizace",
"source.file.date.updated": "Poslední aktualizace",
"source.file.date.created": "Vytvořeno",
"toc.title": "Obsah"

View File

@ -18,7 +18,6 @@
"search.result.other": "# resultater",
"skip.link.title": "Gå til indholdet",
"source.link.title": "Åbn arkiv",
"source.revision.date": "Sidste ændring",
"source.file.date.updated": "Sidste ændring",
"source.file.date.created": "Oprettet",
"toc.title": "Indholdsfortegnelse"

View File

@ -27,7 +27,6 @@
"select.version.title": "Version auswählen",
"skip.link.title": "Zum Inhalt",
"source.link.title": "Quellcode",
"source.revision.date": "Letztes Update",
"source.file.date.updated": "Letztes Update",
"source.file.date.created": "Erstellt",
"toc.title": "Inhaltsverzeichnis",

View File

@ -32,8 +32,7 @@
"select.version.title": "Επιλογή έκδοσης",
"skip.link.title": "Μετάβαση στο περιεχόμενο",
"source.link.title": "Μετάβαση στο αποθετήριο",
"source.revision.date": "Τελευταία ενημέρωση",
"source.file.date.updated": "Τελευταία ενημέρωση",
"source.file.date.updated": "τελευταία ενημέρωση",
"source.file.date.created": "Δημιουργήθηκε",
"tabs.title": "Καρτέλες",
"toc.title": "Πίνακας περιεχομένων",

View File

@ -33,7 +33,6 @@
"select.version.title": "Select version",
"skip.link.title": "Skip to content",
"source.link.title": "Go to repository",
"source.revision.date": "Last update",
"source.file.date.updated": "Last update",
"source.file.date.created": "Created",
"tabs.title": "Tabs",

View File

@ -22,7 +22,6 @@
"search.result.other": "# kongruaj dokumentoj",
"skip.link.title": "Saltu al enhavo",
"source.link.title": "Iru al deponejo",
"source.revision.date": "Lasta ĝisdatigo",
"source.file.date.updated": "Lasta ĝisdatigo",
"source.file.date.created": "Kreita",
"tabs.title": "Langetoj",

View File

@ -28,7 +28,6 @@
"select.version.title": "Seleccionar versión",
"skip.link.title": "Saltar a contenido",
"source.link.title": "Ir al repositorio",
"source.revision.date": "Última actualización",
"source.file.date.updated": "Última actualización",
"source.file.date.created": "Creado",
"tabs.title": "Pestañas",

View File

@ -17,7 +17,6 @@
"search.result.other": "Leiti # tulemust",
"skip.link.title": "Keri sisuni",
"source.link.title": "Ava repositooriumis",
"source.revision.date": "Viimane uuendus",
"source.file.date.updated": "Viimane uuendus",
"source.file.date.created": "Loodud",
"toc.title": "Sisukord"

View File

@ -19,7 +19,6 @@
"search.result.other": "# سند یافت شد",
"skip.link.title": "پرش به محتویات",
"source.link.title": "رفتن به مخزن",
"source.revision.date": "اخرین بروزرسانی",
"source.file.date.updated": "اخرین بروزرسانی",
"source.file.date.created": "ایجاد شده",
"toc.title": "فهرست موضوعات"

View File

@ -18,7 +18,6 @@
"search.result.other": "# täsmäävää dokumenttia",
"skip.link.title": "Hyppää sisältöön",
"source.link.title": "Mene repositoryyn",
"source.revision.date": "Viimeisin päivitys",
"source.file.date.updated": "Viimeisin päivitys",
"source.file.date.created": "Luotu",
"toc.title": "Sisällysluettelo"

View File

@ -28,7 +28,6 @@
"select.version.title": "Sélectionner la version",
"skip.link.title": "Aller au contenu",
"source.link.title": "Aller au dépôt",
"source.revision.date": "Dernière mise à jour",
"source.file.date.updated": "Dernière mise à jour",
"source.file.date.created": "Créé",
"tabs.title": "Onglets",

View File

@ -28,7 +28,6 @@
"select.version.title": "Seleccionar version",
"skip.link.title": "Ir ao contido",
"source.link.title": "Ir ao repositorio",
"source.revision.date": "Última actualización",
"source.file.date.updated": "Última actualización",
"source.file.date.created": "Creada",
"tabs.title": "Pestanas",

View File

@ -1,5 +0,0 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/languages/el.html" as lang %}
{% macro t(key) %}{{ lang.t(key) }}{% endmacro %}

View File

@ -19,7 +19,6 @@
"search.result.other": "# מסמך תואם",
"skip.link.title": "דלג לתוכן",
"source.link.title": "עבור אל מאגר",
"source.revision.date": "העדכון אחרון",
"source.file.date.updated": "העדכון אחרון",
"source.file.date.created": "נוצר",
"toc.title": "תוכן העניינים"

View File

@ -18,7 +18,6 @@
"search.result.other": "# मिलान डाक्यूमेंट्स",
"skip.link.title": "विषय पर बढ़ें",
"source.link.title": "रिपॉजिटरी पर जाएं",
"source.revision.date": "आखिरी अपडेट",
"source.file.date.updated": "आखिरी अपडेट",
"source.file.date.created": "बनाया था",
"toc.title": "विषय - सूची"

View File

@ -17,7 +17,6 @@
"search.result.other": "# rezultata pretraživanja",
"skip.link.title": "Preskočite na sadržaj",
"source.link.title": "Idite u repozitorij",
"source.revision.date": "Zadnje ažuriranje",
"source.file.date.updated": "Zadnje ažuriranje",
"source.file.date.created": "Stvoreno",
"toc.title": "Sadržaj"

View File

@ -26,7 +26,6 @@
"search.result.term.missing": "Üres",
"skip.link.title": "Kihagyás",
"source.link.title": "Főoldalra ugrás",
"source.revision.date": "Utolsó frissítés",
"source.file.date.updated": "Utolsó frissítés",
"source.file.date.created": "Létrehozva",
"tabs.title": "Lapok",

View File

@ -18,8 +18,6 @@
"search.result.other": "# dokumen ditemukan",
"skip.link.title": "Lewati ke isi",
"source.link.title": "Menuju repositori",
"source.revision.date": "Pembaharuan Terakhir",
"source.revision.date": "Pembaharuan Terakhir",
"source.file.date.created": "Dibuat",
"toc.title": "Daftar isi"
}[key] }}{% endmacro %}

View File

@ -23,7 +23,6 @@
"search.result.more.other": "# til viðbótar á þessari síðu",
"skip.link.title": "Hoppa yfir í efni",
"source.link.title": "Fara í gagnahirslu (e. repository)",
"source.revision.date": "Síðasta uppfærsla",
"source.file.date.updated": "Síðasta uppfærsla",
"source.file.date.created": "Búið til",
"tabs.title": "Flipar",

View File

@ -31,7 +31,6 @@
"select.version.title": "Seleziona la versione",
"skip.link.title": "Vai al contenuto",
"source.link.title": "Apri repository",
"source.revision.date": "Ultimo aggiornamento",
"source.file.date.updated": "Ultimo aggiornamento",
"source.file.date.created": "Creata",
"tabs.title": "Tabs",

View File

@ -28,7 +28,6 @@
"search.result.term.missing": "検索に含まれない",
"skip.link.title": "コンテンツにスキップ",
"source.link.title": "リポジトリへ",
"source.revision.date": "最終更新日",
"source.file.date.updated": "最終更新日",
"source.file.date.created": "作成した",
"tabs.title": "タブ",

View File

@ -22,7 +22,6 @@
"search.result.more.other": "კიდევ # ამ გვერდზე",
"skip.link.title": "კონტენტზე გადასვლა",
"source.link.title": "საცავში გადასვლა",
"source.revision.date": "ბოლო განახლება",
"source.file.date.updated": "ბოლო განახლება",
"source.file.date.created": "შეიქმნა",
"tabs.title": "ტაბები",

View File

@ -27,7 +27,6 @@
"select.version.title": "버전 선택",
"skip.link.title": "콘텐츠로 이동",
"source.link.title": "저장소로 이동",
"source.revision.date": "마지막 업데이트",
"source.file.date.updated": "마지막 업데이트",
"source.file.date.created": "작성일",
"toc.title": "목차",

View File

@ -22,7 +22,6 @@
"search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်",
"skip.link.title": "မာတိကာ သို့ သွားရန်",
"source.link.title": "repository သို့ သွားရန်",
"source.revision.date": "နောက်ဆုံး ထုတ်ပြန်ချက်",
"source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်",
"source.file.date.created": "နေပြည်တော်",
"tabs.title": "တက်များ",

View File

@ -18,7 +18,6 @@
"search.result.other": "# overeenkomende documenten",
"skip.link.title": "Ga naar inhoud",
"source.link.title": "Ga naar repository",
"source.revision.date": "Laatst geüpdatet",
"source.file.date.updated": "Laatst geüpdatet",
"source.file.date.created": "Gecreëerd",
"toc.title": "Inhoudsopgave"

View File

@ -18,7 +18,6 @@
"search.result.other": "# treff",
"skip.link.title": "Gå til innhald",
"source.link.title": "Gå til kjelde",
"source.revision.date": "Siste oppdatering",
"source.file.date.updated": "Siste oppdatering",
"source.file.date.created": "Laget",
"toc.title": "Innhaldsliste"

View File

@ -18,7 +18,6 @@
"search.result.other": "# treff",
"skip.link.title": "Gå til innhold",
"source.link.title": "Gå til kilde",
"source.revision.date": "Siste oppdatering",
"source.file.date.updated": "Siste oppdatering",
"source.file.date.created": "Created",
"toc.title": "Innholdsfortegnelse"

View File

@ -26,7 +26,6 @@
"search.result.term.missing": "Brak",
"skip.link.title": "Przejdź do treści",
"source.link.title": "Idź do repozytorium",
"source.revision.date": "Ostatnia aktualizacja",
"source.file.date.updated": "Ostatnia aktualizacja",
"source.file.date.created": "Utworzony",
"tabs.title": "Zakładki",

View File

@ -30,7 +30,6 @@
"select.version.title": "Selecione a versão",
"skip.link.title": "Ir para o conteúdo",
"source.link.title": "Ir ao repositório",
"source.revision.date": "Última atualização",
"source.file.date.updated": "Última atualização",
"source.file.date.created": "Criada",
"tabs.title": "Abas",

View File

@ -18,7 +18,6 @@
"search.result.other": "# documente găsite",
"skip.link.title": "Sari la conținut",
"source.link.title": "Accesează repository-ul",
"source.revision.date": "Ultima actualizare",
"source.file.date.updated": "Ultima actualizare",
"source.file.date.created": "Creată",
"toc.title": "Cuprins"

View File

@ -18,7 +18,6 @@
"search.result.other": "Найдено # совпадений",
"skip.link.title": "Перейти к содержанию",
"source.link.title": "Перейти к репозиторию",
"source.revision.date": "Последнее обновление",
"source.file.date.updated": "Последнее обновление",
"source.file.date.created": "Созданный",
"toc.title": "Содержание"

View File

@ -29,7 +29,6 @@
"select.version.title": "Izaberi verziju",
"skip.link.title": "Idi na tekst",
"source.link.title": "Idi u repozitorijum",
"source.revision.date": "Ažuriran",
"source.file.date.updated": "Ažuriran",
"source.file.date.created": "Kreiran",
"tabs.title": "Tabovi",

View File

@ -24,7 +24,6 @@
"search.result.more.other": "තව ප්‍රතිඵල # ක්",
"skip.link.title": "අන්තර්ගතය වෙත යන්න",
"source.link.title": "රිපොසිටරියට යන්න",
"source.revision.date": "අවසන් යාවත්කාලීන වීම",
"source.file.date.updated": "අවසන් යාවත්කාලීන වීම",
"source.file.date.created": "ٺاھيو ويو",
"tabs.title": "ටැබ්ස්",

View File

@ -17,7 +17,6 @@
"search.result.other": "Vyhovujúce dokumenty: #",
"skip.link.title": "Preskočiť na obsah",
"source.link.title": "Zobraziť repozitár",
"source.revision.date": "Posledná aktualizácia",
"source.file.date.updated": "Posledná aktualizácia",
"source.file.date.created": "Vytvorené",
"toc.title": "Obsah"

View File

@ -17,7 +17,6 @@
"search.result.other": "# zadetkov",
"skip.link.title": "Skoči na vsebino",
"source.link.title": "Pojdi na repozitorij",
"source.revision.date": "Zadnja posodobitev",
"source.file.date.updated": "Zadnja posodobitev",
"source.file.date.created": "Ustvarjeno",
"toc.title": "Kazalo"

View File

@ -29,7 +29,6 @@
"select.version.title": "Изабери верзију",
"skip.link.title": "Иди на текст",
"source.link.title": "Иди у репозиторијум",
"source.revision.date": "Ажуриран",
"source.file.date.updated": "Ажуриран",
"source.file.date.created": "Креиран",
"tabs.title": "Табови",

View File

@ -15,6 +15,7 @@
"nav.title": "Navigation",
"search.config.lang": "sv",
"search.placeholder": "Sök",
"search.share": "Dela",
"search.reset": "Rensa",
"search.result.initializer": "Initialiserar sök",
"search.result.placeholder": "Skriv sökord",
@ -24,11 +25,14 @@
"search.result.more.one": "1 till på denna sidan",
"search.result.more.other": "# till på denna sidan",
"search.result.term.missing": "Saknas",
"search.title": "Sök",
"select.language.title": "Välj språk",
"select.version.title": "Välj version",
"skip.link.title": "Gå till innehållet",
"source.link.title": "Gå till datakatalog",
"source.revision.date": "Senaste uppdateringen",
"source.file.date.updated": "Senaste uppdateringen",
"source.file.date.updated": "Senaste uppdaterad",
"source.file.date.created": "Skapad",
"tabs.title": "Flikar",
"toc.title": "Innehållsförteckning"
"top.title": "Tillbaka till toppen"
}[key] }}{% endmacro %}

View File

@ -18,7 +18,6 @@
"search.result.other": "พบ # เอกสารที่ตรงกัน",
"skip.link.title": "ข้ามไปที่เนื้อหา",
"source.link.title": "ไปที่ Repository",
"source.revision.date": "สร้าง",
"source.file.date.updated": "สร้าง",
"source.file.date.created": "สร้าง",
"toc.title": "สารบัญ"

View File

@ -18,7 +18,6 @@
"search.result.other": "# doküman bulundu",
"skip.link.title": "Ana içeriğe geç",
"source.link.title": "Depoya git",
"source.revision.date": "Son Güncelleme",
"source.file.date.updated": "Son Güncelleme",
"source.file.date.created": "Oluşturuldu",
"toc.title": "İçindekiler"

View File

@ -18,7 +18,6 @@
"search.result.other": "Знайдено # збігів",
"skip.link.title": "Перейти до змісту",
"source.link.title": "Перейти до репозиторію",
"source.revision.date": "Останнє оновлення",
"source.file.date.updated": "Останнє оновлення",
"source.file.date.created": "Створено",
"toc.title": "Зміст"

View File

@ -18,7 +18,6 @@
"search.result.other": "# tài liệu liên quan",
"skip.link.title": "Vào thẳng nội dung",
"source.link.title": "Đến kho lưu trữ mã nguồn",
"source.revision.date": "Cập nhật cuối cùng",
"source.file.date.updated": "Cập nhật cuối cùng",
"source.file.date.created": "Tạo",
"toc.title": "Mục lục"

View File

@ -21,7 +21,6 @@
"search.result.other": "# 個符合條件的結果",
"skip.link.title": "跳轉至",
"source.link.title": "前往倉庫",
"source.revision.date": "最後更新",
"source.file.date.updated": "最後更新",
"source.file.date.created": "建立日期",
"toc.title": "目錄"

View File

@ -21,7 +21,6 @@
"search.result.other": "找到 # 個符合的項目",
"skip.link.title": "跳轉到",
"source.link.title": "前往倉庫",
"source.revision.date": "最後更新",
"source.file.date.updated": "最後更新",
"source.file.date.created": "建立日期",
"toc.title": "目錄"

View File

@ -3,26 +3,39 @@
-#}
{% macro t(key) %}{{ {
"language": "zh",
"direction": "ltr",
"clipboard.copy": "复制",
"clipboard.copied": "已复制",
"edit.link.title": "编辑此页",
"footer.previous": "上一页",
"footer.next": "下一页",
"footer.title": "页脚",
"header.title": "页眉",
"meta.comments": "评论",
"meta.source": "来源",
"nav.title": "导航栏",
"search.config.lang": "ja",
"search.config.pipeline": "trimmer, stemmer",
"search.config.separator": "[\\。]+",
"search.placeholder": "搜索",
"search.share": "分享",
"search.reset": "清空当前内容",
"search.result.initializer": "正在初始化搜索引擎",
"search.result.placeholder": "键入以开始搜索",
"search.result.none": "没有找到符合条件的结果",
"search.result.one": "找到 1 个符合条件的结果",
"search.result.other": "# 个符合条件的结果",
"search.result.more.one": "在该页上还有 1 个符合条件的结果",
"search.result.more.other": "在该页上还有 # 个符合条件的结果",
"search.result.term.missing": "缺少",
"search.title": "查找",
"select.language.title": "选择当前语言",
"select.version.title": "选择当前版本",
"skip.link.title": "跳转至",
"source.link.title": "前往仓库",
"source.revision.date": "最后更新",
"source.file.date.updated": "最后更新",
"source.file.date.created": "创建日期",
"toc.title": "目录"
"tabs.title": "标签",
"toc.title": "目录",
"top.title": "回到页面顶部"
}[key] }}{% endmacro %}

View File

@ -1,7 +1,6 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/language.html" as lang with context %}
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">

View File

@ -1,17 +1,15 @@
{#-
This file was automatically generated - do not edit
-#}
{% if config.extra.social %}
<div class="md-footer-social">
{% for social in config.extra.social %}
{% set title = social.name %}
{% if not title and "//" in social.link %}
{% set _,url = social.link.split("//") %}
{% set title = url.split("/")[0] %}
{% endif %}
<a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-footer-social__link">
{% include ".icons/" ~ social.icon ~ ".svg" %}
</a>
{% endfor %}
</div>
{% endif %}
<div class="md-social">
{% for social in config.extra.social %}
{% set title = social.name %}
{% if not title and "//" in social.link %}
{% set _, url = social.link.split("//") %}
{% set title = url.split("/")[0] %}
{% endif %}
<a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-social__link">
{% include ".icons/" ~ social.icon ~ ".svg" %}
</a>
{% endfor %}
</div>

View File

@ -1,4 +0,0 @@
{#-
This file was automatically generated - do not edit
-#}
{% include "partials/source-file.html" %}

View File

@ -1,18 +1,20 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/language.html" as lang with context %}
{% set label = lang.t("source.file.date.updated") %}
<hr>
<div class="md-source-date">
<div class="md-source-file">
<small>
{% if page.meta.git_revision_date_localized %}
{{ label }}: {{ page.meta.git_revision_date_localized }}
{{ lang.t("source.file.date.updated") }}:
{{ page.meta.git_revision_date_localized }}
{% if page.meta.git_creation_date_localized %}
<br>{{ lang.t("source.file.date.created") }}: {{ page.meta.git_creation_date_localized }}
<br>
{{ lang.t("source.file.date.created") }}:
{{ page.meta.git_creation_date_localized }}
{% endif %}
{% elif page.meta.revision_date %}
{{ label }}: {{ page.meta.revision_date }}
{{ lang.t("source.file.date.updated") }}:
{{ page.meta.revision_date }}
{% endif %}
</small>
</div>

View File

@ -1,7 +1,6 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/language.html" as lang with context %}
<a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source" data-md-component="source">
<div class="md-source__icon md-icon">
{% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %}

View File

@ -1,8 +1,7 @@
{#-
This file was automatically generated - do not edit
-#}
{% import "partials/language.html" as lang with context %}
{% set title = title | default(lang.t("toc.title")) %}
{% set title = lang.t("toc.title") %}
{% if config.mdx_configs.toc and config.mdx_configs.toc.title %}
{% set title = config.mdx_configs.toc.title %}
{% endif %}

View File

@ -148,7 +148,7 @@ markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true

Some files were not shown because too many files have changed in this diff Show More