Merge pull request #3218 from squidfunk/feature/insiders-ghost-pepper
Material for MkDocs 8
This commit is contained in:
commit
79c56f58c4
|
|
@ -1 +1 @@
|
||||||
last 4 years
|
last 2 years
|
||||||
|
|
|
||||||
|
|
@ -34,11 +34,7 @@ trim_trailing_whitespace = true
|
||||||
[*.md]
|
[*.md]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
# Makefiles
|
# Python
|
||||||
[*.py]
|
[*.py]
|
||||||
|
indent_style = space
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
||||||
# Makefiles
|
|
||||||
[Makefile]
|
|
||||||
indent_style = tab
|
|
||||||
indent_size = 8
|
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,7 @@
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
.cache
|
.cache
|
||||||
.eslintcache
|
.eslintcache
|
||||||
|
__pycache__
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# General
|
# General
|
||||||
|
|
|
||||||
10
.stylelintrc
10
.stylelintrc
|
|
@ -62,6 +62,12 @@
|
||||||
"font-family-name-quotes": "always-where-recommended",
|
"font-family-name-quotes": "always-where-recommended",
|
||||||
"font-weight-notation": "numeric",
|
"font-weight-notation": "numeric",
|
||||||
"hue-degree-notation": "number",
|
"hue-degree-notation": "number",
|
||||||
|
"length-zero-no-unit": [
|
||||||
|
true,
|
||||||
|
{
|
||||||
|
"ignore": ["custom-properties"]
|
||||||
|
}
|
||||||
|
],
|
||||||
"linebreaks": "unix",
|
"linebreaks": "unix",
|
||||||
"media-feature-name-no-unknown": null,
|
"media-feature-name-no-unknown": null,
|
||||||
"no-descending-specificity": null,
|
"no-descending-specificity": null,
|
||||||
|
|
@ -80,6 +86,7 @@
|
||||||
"selector-class-pattern": null,
|
"selector-class-pattern": null,
|
||||||
"selector-combinator-space-before": null,
|
"selector-combinator-space-before": null,
|
||||||
"selector-descendant-combinator-no-non-space": null,
|
"selector-descendant-combinator-no-non-space": null,
|
||||||
|
"selector-id-pattern": null,
|
||||||
"selector-max-empty-lines": 0,
|
"selector-max-empty-lines": 0,
|
||||||
"selector-max-id": 0,
|
"selector-max-id": 0,
|
||||||
"selector-no-qualifying-type": null,
|
"selector-no-qualifying-type": null,
|
||||||
|
|
@ -89,6 +96,7 @@
|
||||||
"unicode-bom": "never",
|
"unicode-bom": "never",
|
||||||
"unit-allowed-list": [
|
"unit-allowed-list": [
|
||||||
"%",
|
"%",
|
||||||
|
"ch",
|
||||||
"dppx",
|
"dppx",
|
||||||
"deg",
|
"deg",
|
||||||
"em",
|
"em",
|
||||||
|
|
@ -141,6 +149,8 @@
|
||||||
"scss/double-slash-comment-whitespace-inside": "always",
|
"scss/double-slash-comment-whitespace-inside": "always",
|
||||||
"scss/at-extend-no-missing-placeholder": null,
|
"scss/at-extend-no-missing-placeholder": null,
|
||||||
"scss/no-duplicate-mixins": true,
|
"scss/no-duplicate-mixins": true,
|
||||||
|
"scss/no-global-function-names": null,
|
||||||
|
"scss/operator-no-newline-after": null,
|
||||||
"scss/operator-no-unspaced": true,
|
"scss/operator-no-unspaced": true,
|
||||||
"scss/partial-no-import": true,
|
"scss/partial-no-import": true,
|
||||||
"scss/percent-placeholder-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
|
"scss/percent-placeholder-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
|
||||||
|
|
|
||||||
|
|
@ -101,9 +101,10 @@ assets may also be put in the `overrides` directory:
|
||||||
├─ partials/
|
├─ partials/
|
||||||
│ ├─ integrations/ # Third-party integrations
|
│ ├─ integrations/ # Third-party integrations
|
||||||
│ │ ├─ analytics/ # Analytics integrations
|
│ │ ├─ analytics/ # Analytics integrations
|
||||||
│ │ ├─ analytics.html # Analytics setup
|
│ │ └─ analytics.html # Analytics setup
|
||||||
│ │ └─ disqus.html # Disqus
|
|
||||||
│ ├─ languages/ # Translation languages
|
│ ├─ languages/ # Translation languages
|
||||||
|
│ ├─ content.html # Page content
|
||||||
|
│ ├─ copyright.html # Copyright and theme information
|
||||||
│ ├─ footer.html # Footer bar
|
│ ├─ footer.html # Footer bar
|
||||||
│ ├─ header.html # Header bar
|
│ ├─ header.html # Header bar
|
||||||
│ ├─ language.html # Translation setup
|
│ ├─ language.html # Translation setup
|
||||||
|
|
@ -111,7 +112,7 @@ assets may also be put in the `overrides` directory:
|
||||||
│ ├─ nav.html # Main navigation
|
│ ├─ nav.html # Main navigation
|
||||||
│ ├─ nav-item.html # Main navigation item
|
│ ├─ nav-item.html # Main navigation item
|
||||||
│ ├─ palette.html # Color palette
|
│ ├─ palette.html # Color palette
|
||||||
│ ├─ search.html # Search box
|
│ ├─ search.html # Search interface
|
||||||
│ ├─ social.html # Social links
|
│ ├─ social.html # Social links
|
||||||
│ ├─ source.html # Repository information
|
│ ├─ source.html # Repository information
|
||||||
│ ├─ source-file.html # Source file 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) |
|
| `styles` | Wraps the style sheets (also extra sources) |
|
||||||
| `tabs` | Wraps the tabs navigation (if available) |
|
| `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
|
## Theme development
|
||||||
|
|
||||||
Material for MkDocs is built on top of [TypeScript], [RxJS] and [SASS], and
|
Material for MkDocs is built on top of [TypeScript], [RxJS] and [SASS], and
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ If not, we recommended using [`docker`][docker].
|
||||||
|
|
||||||
## Installation
|
## 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
|
Help test the latest version of Material for MkDocs, introducing many new
|
||||||
features and improvements like [code annotations], [anchor tracking] and
|
features and improvements like [code annotations], [anchor tracking] and
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ that new features are first exclusively released to sponsors as part of
|
||||||
</div>
|
</div>
|
||||||
<figcaption markdown>
|
<figcaption markdown>
|
||||||
|
|
||||||
The official documentation is built with Insiders
|
This documentation is built with Insiders
|
||||||
[squidfunk.github.io/mkdocs-material][Material for MkDocs]
|
[squidfunk.github.io/mkdocs-material][Material for MkDocs]
|
||||||
|
|
||||||
</figcaption>
|
</figcaption>
|
||||||
|
|
|
||||||
|
|
@ -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 static site is automatically built and deployed. Push your changes to see
|
||||||
the workflow in action.
|
the workflow in action.
|
||||||
|
|
||||||
If the GitHub Page doesn't show up after a few minutes, ensure the source branch
|
If the GitHub Page doesn't show up after a few minutes, go to your
|
||||||
for your GitHub Page is set to `gh-pages` in your repository settings
|
settings of your repository and ensure that the [publishing source branch]
|
||||||
`github.com/<username>/<repository>/settings/pages`.
|
for your GitHub Page is set to `gh-pages`.
|
||||||
|
|
||||||
Your documentation should shortly appear at `<username>.github.io/<repository>`.
|
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
|
[personal access token]: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
|
||||||
[Insiders]: insiders/index.md
|
[Insiders]: insiders/index.md
|
||||||
[GitHub secrets]: https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
|
[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
|
### with MkDocs
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -287,7 +287,7 @@ only the `inline` modifier.
|
||||||
|
|
||||||
Use `inline` to align to the left (right for rtl languages).
|
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
|
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
|
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.
|
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
|
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`:
|
the default type, and thus fallback for unknown type qualifiers, is `note`:
|
||||||
|
|
||||||
`note`{ #type-note }, ~~`seealso`~~ [^1]
|
`note`{ #type-note }
|
||||||
|
|
||||||
: !!! 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
|
euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo
|
||||||
purus auctor massa, nec semper lorem quam in massa.
|
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
|
## Customization
|
||||||
|
|
||||||
### Custom admonitions
|
### Custom admonitions
|
||||||
|
|
|
||||||
|
|
@ -90,14 +90,14 @@ shortcode for a given language.
|
||||||
_Example_:
|
_Example_:
|
||||||
|
|
||||||
```` markdown
|
```` markdown
|
||||||
``` python
|
``` py
|
||||||
import tensorflow as tf
|
import tensorflow as tf
|
||||||
```
|
```
|
||||||
````
|
````
|
||||||
|
|
||||||
_Result_:
|
_Result_:
|
||||||
|
|
||||||
``` python
|
``` py
|
||||||
import tensorflow as tf
|
import tensorflow as tf
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -183,7 +183,7 @@ allows to split large code blocks for readability.
|
||||||
_Example_:
|
_Example_:
|
||||||
|
|
||||||
```` markdown
|
```` markdown
|
||||||
``` python linenums="1"
|
``` py linenums="1"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
for j in range(len(items) - 1 - i):
|
||||||
|
|
@ -194,7 +194,7 @@ def bubble_sort(items):
|
||||||
|
|
||||||
_Result_:
|
_Result_:
|
||||||
|
|
||||||
``` python linenums="1"
|
``` py linenums="1"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
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_:
|
_Example_:
|
||||||
|
|
||||||
```` markdown
|
```` markdown
|
||||||
``` python hl_lines="2 3"
|
``` py hl_lines="2 3"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
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_:
|
_Result_:
|
||||||
|
|
||||||
``` python linenums="1" hl_lines="2 3"
|
``` py linenums="1" hl_lines="2 3"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
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_:
|
_Example_:
|
||||||
|
|
||||||
```` markdown
|
```` markdown
|
||||||
``` python hl_lines="2-5"
|
``` py hl_lines="2-5"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
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_:
|
_Result_:
|
||||||
|
|
||||||
``` python linenums="1" hl_lines="2-5"
|
``` py linenums="1" hl_lines="2-5"
|
||||||
def bubble_sort(items):
|
def bubble_sort(items):
|
||||||
for i in range(len(items)):
|
for i in range(len(items)):
|
||||||
for j in range(len(items) - 1 - i):
|
for j in range(len(items) - 1 - i):
|
||||||
|
|
|
||||||
|
|
@ -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
|
This will set the `meta` tag containing the site description inside the
|
||||||
document `head` for the current page to the provided value.
|
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
|
## Customization
|
||||||
|
|
||||||
### Using metadata in templates
|
### Using metadata in templates
|
||||||
|
|
@ -116,6 +90,7 @@ e.g. to add indexing policies for search engines via the `robots` property:
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[theme extension]: ../customization.md#extending-the-theme
|
||||||
[overriding blocks]: ../customization.md#overriding-blocks
|
[overriding blocks]: ../customization.md#overriding-blocks
|
||||||
|
|
||||||
#### on a single page
|
#### on a single page
|
||||||
|
|
|
||||||
|
|
@ -4,40 +4,83 @@ template: overrides/main.html
|
||||||
|
|
||||||
# Adding a comment system
|
# Adding a comment system
|
||||||
|
|
||||||
Material for MkDocs is natively integrated with [Disqus], a comment system that
|
Material for MkDocs allows to easily add the third-party comment system of your
|
||||||
provides a wide range of features like social integrations, user profiles, as
|
choice to the footer of every page by using [theme extension]. As an example,
|
||||||
well as spam and moderation tools. Of course, other comment systems can be
|
we'll be integrating [Disqus] a wildly popular comment provider, but others
|
||||||
integrated, too.
|
can be integrate with the same principles
|
||||||
|
|
||||||
[Disqus]: https://disqus.com/
|
[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
|
## 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:
|
with custom front matter. Add the following lines at the top of a Markdown file:
|
||||||
|
|
||||||
=== ":octicons-check-circle-fill-16: Enabled"
|
=== ":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
|
[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
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
folder. Then, import the [translations] of the language as a fallback and only
|
||||||
adjust the ones you want to override:
|
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
|
``` html
|
||||||
<!-- Import translations for language and fallback -->
|
<!-- Import translations for language and fallback -->
|
||||||
|
|
|
||||||
|
|
@ -399,9 +399,9 @@ The following configuration options are supported:
|
||||||
`linenums_style`{ #highlight-linenums-style }
|
`linenums_style`{ #highlight-linenums-style }
|
||||||
|
|
||||||
: :octicons-milestone-24: Default: `table` – The [Highlight] extension
|
: :octicons-milestone-24: Default: `table` – The [Highlight] extension
|
||||||
provides three ways to add line numbers, all of which are supported by
|
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, `inline`
|
Material for MkDocs. While `table` wraps a code block in a `<table>`
|
||||||
and `pymdownx-inline` render line numbers as part of the line itself:
|
element, `pymdownx-inline` renders line numbers as part of the line itself:
|
||||||
|
|
||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
|
|
@ -625,10 +625,10 @@ The following configuration options are supported:
|
||||||
|
|
||||||
`alternate_style`{ #tabbed-alternate-style }
|
`alternate_style`{ #tabbed-alternate-style }
|
||||||
|
|
||||||
: :octicons-milestone-24: Default: `false` · [:octicons-tag-24: 7.3.1]
|
: [:octicons-tag-24: 7.3.1][Tabbed alternate support] ·
|
||||||
[Tabbed alternate support] – This option enables the [alternate style] of
|
:octicons-milestone-24: Default: `false` · :octicons-alert-24: Required –
|
||||||
content tabs, which has [better behavior on mobile viewports], and thus
|
This option enables the content tabs [alternate style], which has
|
||||||
is strongly recommended:
|
[better behavior on mobile viewports], and is the only supported style:
|
||||||
|
|
||||||
``` yaml
|
``` yaml
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
|
|
|
||||||
|
|
@ -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
|
and create a new partial in the `overrides` folder. The name of the partial is
|
||||||
used to configure the custom integration via `mkdocs.yml`:
|
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
|
``` html
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -331,7 +331,7 @@ used to configure the custom integration via `mkdocs.yml`:
|
||||||
|
|
||||||
### Custom site feedback
|
### 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
|
generated by users interacting with the feedback widget with the help of some
|
||||||
[additional JavaScript]:
|
[additional JavaScript]:
|
||||||
|
|
||||||
|
|
@ -342,9 +342,12 @@ generated by users interacting with the feedback widget with the help of some
|
||||||
feedback.addEventListener("submit", function(ev) {
|
feedback.addEventListener("submit", function(ev) {
|
||||||
ev.preventDefault()
|
ev.preventDefault()
|
||||||
|
|
||||||
/* Retrieve and send feedback */
|
/* Retrieve page and feedback value */
|
||||||
var page = document.location.pathname
|
var page = document.location.pathname
|
||||||
var data = ev.submitter.getAttribute("data-md-value")
|
var data = ev.submitter.getAttribute("data-md-value")
|
||||||
|
|
||||||
|
/* Send feedback value */
|
||||||
|
console.log(page, data)
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@ The following configuration options are supported:
|
||||||
prebuild_index: true
|
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
|
plugin] generates up to [50% smaller] search indexes, doubling search
|
||||||
performance.
|
performance.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -602,7 +602,7 @@ matches the new structure:
|
||||||
- Support for displaying stars and forks for GitLab repositories
|
- Support for displaying stars and forks for GitLab repositories
|
||||||
- Support for scroll snapping of sidebars and search results
|
- Support for scroll snapping of sidebars and search results
|
||||||
- Reduced HTML and CSS footprint due to deprecation of Internet Explorer support
|
- 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
|
[CSS variables]: setup/changing-the-colors.md#custom-colors
|
||||||
[icon integration]: reference/icons-emojis.md#search
|
[icon integration]: reference/icons-emojis.md#search
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,3 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>404 - Not found</h1>
|
<h1>404 - Not found</h1>
|
||||||
{% endblock %}
|
{% 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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -13,11 +13,6 @@
|
||||||
{% elif config.site_description %}
|
{% elif config.site_description %}
|
||||||
<meta name="description" content="{{ config.site_description }}">
|
<meta name="description" content="{{ config.site_description }}">
|
||||||
{% endif %}
|
{% 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 %}
|
{% if page and page.meta and page.meta.author %}
|
||||||
<meta name="author" content="{{ page.meta.author }}">
|
<meta name="author" content="{{ page.meta.author }}">
|
||||||
{% elif config.site_author %}
|
{% elif config.site_author %}
|
||||||
|
|
@ -27,7 +22,7 @@
|
||||||
<link rel="canonical" href="{{ page.canonical_url }}">
|
<link rel="canonical" href="{{ page.canonical_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-7.3.6">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.0.0">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page and page.meta and page.meta.title %}
|
{% if page and page.meta and page.meta.title %}
|
||||||
|
|
@ -39,7 +34,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block styles %}
|
{% 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 %}
|
{% if config.theme.palette %}
|
||||||
{% set palette = config.theme.palette %}
|
{% set palette = config.theme.palette %}
|
||||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.9204c3b2.min.css' | url }}">
|
||||||
|
|
@ -61,15 +56,13 @@
|
||||||
font.text | replace(' ', '+') + ':300,400,400i,700%7C' +
|
font.text | replace(' ', '+') + ':300,400,400i,700%7C' +
|
||||||
font.code | replace(' ', '+')
|
font.code | replace(' ', '+')
|
||||||
}}&display=fallback">
|
}}&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 %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% if config.extra.manifest %}
|
|
||||||
<link rel="manifest" href="{{ config.extra.manifest | url }}" crossorigin="use-credentials">
|
|
||||||
{% endif %}
|
|
||||||
{% for path in config["extra_css"] %}
|
{% for path in config["extra_css"] %}
|
||||||
<link rel="stylesheet" href="{{ path | url }}">
|
<link rel="stylesheet" href="{{ path | url }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% include "partials/javascripts/base.html" %}
|
||||||
{% block analytics %}
|
{% block analytics %}
|
||||||
{% include "partials/integrations/analytics.html" %}
|
{% include "partials/integrations/analytics.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
@ -89,7 +82,6 @@
|
||||||
<body dir="{{ direction }}">
|
<body dir="{{ direction }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% set features = config.theme.features or [] %}
|
{% set features = config.theme.features or [] %}
|
||||||
{% include "partials/javascripts/base.html" %}
|
|
||||||
{% if not config.theme.palette is mapping %}
|
{% if not config.theme.palette is mapping %}
|
||||||
{% include "partials/javascripts/palette.html" %}
|
{% include "partials/javascripts/palette.html" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
@ -106,13 +98,25 @@
|
||||||
</div>
|
</div>
|
||||||
<div data-md-component="announce">
|
<div data-md-component="announce">
|
||||||
{% if self.announce() %}
|
{% if self.announce() %}
|
||||||
<aside class="md-banner md-announce">
|
<aside class="md-banner">
|
||||||
<div class="md-banner__inner md-announce__inner md-grid md-typeset">
|
<div class="md-banner__inner md-grid md-typeset">
|
||||||
{% block announce %}{% endblock %}
|
{% block announce %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</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 %}
|
{% block header %}
|
||||||
{% include "partials/header.html" %}
|
{% include "partials/header.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
@ -156,25 +160,7 @@
|
||||||
<div class="md-content" data-md-component="content">
|
<div class="md-content" data-md-component="content">
|
||||||
<article class="md-content__inner md-typeset">
|
<article class="md-content__inner md-typeset">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if page.edit_url %}
|
{% include "partials/content.html" %}
|
||||||
<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" %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -198,9 +184,11 @@
|
||||||
"base": base_url,
|
"base": base_url,
|
||||||
"features": features,
|
"features": features,
|
||||||
"translations": {},
|
"translations": {},
|
||||||
"search": "assets/javascripts/workers/search.8397ff9e.min.js" | url,
|
"search": "assets/javascripts/workers/search.4b3933ee.min.js" | url
|
||||||
"version": config.extra.version or None
|
|
||||||
} -%}
|
} -%}
|
||||||
|
{%- if config.extra.version -%}
|
||||||
|
{%- set _ = app.update({ "version": config.extra.version }) -%}
|
||||||
|
{%- endif -%}
|
||||||
{%- set translations = app.translations -%}
|
{%- set translations = app.translations -%}
|
||||||
{%- for key in [
|
{%- for key in [
|
||||||
"clipboard.copy",
|
"clipboard.copy",
|
||||||
|
|
@ -225,7 +213,7 @@
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block scripts %}
|
{% 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"] %}
|
{% for path in config["extra_javascript"] %}
|
||||||
<script src="{{ path | url }}"></script>
|
<script src="{{ path | url }}"></script>
|
||||||
{% endfor %}
|
{% 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
File diff suppressed because one or more lines are too long
|
|
@ -3,7 +3,7 @@
|
||||||
-#}
|
-#}
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block extrahead %}
|
{% 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 %}
|
{% endblock %}
|
||||||
{% block announce %}
|
{% block announce %}
|
||||||
<a href="https://twitter.com/squidfunk">
|
<a href="https://twitter.com/squidfunk">
|
||||||
|
|
@ -16,5 +16,5 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
<script src="{{ 'overrides/assets/javascripts/bundle.525231ca.min.js' | url }}"></script>
|
<script src="{{ 'overrides/assets/javascripts/bundle.a08d04cf.min.js' | url }}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
||||||
|
|
@ -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 %}
|
||||||
|
|
@ -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>
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
This file was automatically generated - do not edit
|
||||||
-#}
|
-#}
|
||||||
{% import "partials/language.html" as lang with context %}
|
|
||||||
<footer class="md-footer">
|
<footer class="md-footer">
|
||||||
{% if page.previous_page or page.next_page %}
|
{% if page.previous_page or page.next_page %}
|
||||||
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
|
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
|
||||||
|
|
@ -41,21 +40,10 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="md-footer-meta md-typeset">
|
<div class="md-footer-meta md-typeset">
|
||||||
<div class="md-footer-meta__inner md-grid">
|
<div class="md-footer-meta__inner md-grid">
|
||||||
<div class="md-footer-copyright">
|
{% include "partials/copyright.html" %}
|
||||||
{% if config.copyright %}
|
{% if config.extra.social %}
|
||||||
<div class="md-footer-copyright__highlight">
|
{% include "partials/social.html" %}
|
||||||
{{ config.copyright }}
|
{% endif %}
|
||||||
</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" %}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
||||||
|
|
@ -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 %}
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
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>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# ooreenstemmende dokumente",
|
"search.result.other": "# ooreenstemmende dokumente",
|
||||||
"skip.link.title": "Slaan oor na inhoud",
|
"skip.link.title": "Slaan oor na inhoud",
|
||||||
"source.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",
|
"source.file.date.created": "Geskep",
|
||||||
"toc.title": "Inhoudsopgawe"
|
"toc.title": "Inhoudsopgawe"
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@
|
||||||
"search.result.other": "نتائج البحث # مستندات",
|
"search.result.other": "نتائج البحث # مستندات",
|
||||||
"skip.link.title": "انتقل إلى المحتوى",
|
"skip.link.title": "انتقل إلى المحتوى",
|
||||||
"source.link.title": "اذهب إلى المصدر",
|
"source.link.title": "اذهب إلى المصدر",
|
||||||
"source.revision.date": "اخر تحديث",
|
|
||||||
"source.file.date.updated": "اخر تحديث",
|
"source.file.date.updated": "اخر تحديث",
|
||||||
"source.file.date.created": "خلقت",
|
"source.file.date.created": "خلقت",
|
||||||
"toc.title": "جدول المحتويات"
|
"toc.title": "جدول المحتويات"
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,6 @@
|
||||||
"search.result.more.other": "още # на тази страница",
|
"search.result.more.other": "още # на тази страница",
|
||||||
"skip.link.title": "Към съдържанието",
|
"skip.link.title": "Към съдържанието",
|
||||||
"source.link.title": "Към хранилището",
|
"source.link.title": "Към хранилището",
|
||||||
"source.revision.date": "Последна промяна",
|
|
||||||
"source.file.date.updated": "Последна промяна",
|
"source.file.date.updated": "Последна промяна",
|
||||||
"source.file.date.created": "Създаден",
|
"source.file.date.created": "Създаден",
|
||||||
"tabs.title": "Табове",
|
"tabs.title": "Табове",
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
"search.result.other": "# টা ডকুমেন্ট",
|
"search.result.other": "# টা ডকুমেন্ট",
|
||||||
"skip.link.title": "কনটেন্টে যান",
|
"skip.link.title": "কনটেন্টে যান",
|
||||||
"source.link.title": "রিপোজিটরিতে যান",
|
"source.link.title": "রিপোজিটরিতে যান",
|
||||||
"source.revision.date": "শেষ আপডেট",
|
|
||||||
"source.file.date.updated": "শেষ আপডেট",
|
"source.file.date.updated": "শেষ আপডেট",
|
||||||
"source.file.date.created": "তৈরি হয়েছে",
|
"source.file.date.created": "তৈরি হয়েছে",
|
||||||
"tabs.title": "ট্যাব",
|
"tabs.title": "ট্যাব",
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "# documents coincidents",
|
"search.result.other": "# documents coincidents",
|
||||||
"skip.link.title": "Salta el contingut",
|
"skip.link.title": "Salta el contingut",
|
||||||
"source.link.title": "Ves al repositori",
|
"source.link.title": "Ves al repositori",
|
||||||
"source.revision.date": "Darrera actualització",
|
|
||||||
"source.file.date.updated": "Darrera actualització",
|
"source.file.date.updated": "Darrera actualització",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"toc.title": "Taula de continguts"
|
"toc.title": "Taula de continguts"
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "Nalezené dokumenty: #",
|
"search.result.other": "Nalezené dokumenty: #",
|
||||||
"skip.link.title": "Přeskočit obsah",
|
"skip.link.title": "Přeskočit obsah",
|
||||||
"source.link.title": "Přejít do repozitáře",
|
"source.link.title": "Přejít do repozitáře",
|
||||||
"source.revision.date": "Poslední aktualizace",
|
|
||||||
"source.file.date.updated": "Poslední aktualizace",
|
"source.file.date.updated": "Poslední aktualizace",
|
||||||
"source.file.date.created": "Vytvořeno",
|
"source.file.date.created": "Vytvořeno",
|
||||||
"toc.title": "Obsah"
|
"toc.title": "Obsah"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# resultater",
|
"search.result.other": "# resultater",
|
||||||
"skip.link.title": "Gå til indholdet",
|
"skip.link.title": "Gå til indholdet",
|
||||||
"source.link.title": "Åbn arkiv",
|
"source.link.title": "Åbn arkiv",
|
||||||
"source.revision.date": "Sidste ændring",
|
|
||||||
"source.file.date.updated": "Sidste ændring",
|
"source.file.date.updated": "Sidste ændring",
|
||||||
"source.file.date.created": "Oprettet",
|
"source.file.date.created": "Oprettet",
|
||||||
"toc.title": "Indholdsfortegnelse"
|
"toc.title": "Indholdsfortegnelse"
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
"select.version.title": "Version auswählen",
|
"select.version.title": "Version auswählen",
|
||||||
"skip.link.title": "Zum Inhalt",
|
"skip.link.title": "Zum Inhalt",
|
||||||
"source.link.title": "Quellcode",
|
"source.link.title": "Quellcode",
|
||||||
"source.revision.date": "Letztes Update",
|
|
||||||
"source.file.date.updated": "Letztes Update",
|
"source.file.date.updated": "Letztes Update",
|
||||||
"source.file.date.created": "Erstellt",
|
"source.file.date.created": "Erstellt",
|
||||||
"toc.title": "Inhaltsverzeichnis",
|
"toc.title": "Inhaltsverzeichnis",
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,7 @@
|
||||||
"select.version.title": "Επιλογή έκδοσης",
|
"select.version.title": "Επιλογή έκδοσης",
|
||||||
"skip.link.title": "Μετάβαση στο περιεχόμενο",
|
"skip.link.title": "Μετάβαση στο περιεχόμενο",
|
||||||
"source.link.title": "Μετάβαση στο αποθετήριο",
|
"source.link.title": "Μετάβαση στο αποθετήριο",
|
||||||
"source.revision.date": "Τελευταία ενημέρωση",
|
"source.file.date.updated": "τελευταία ενημέρωση",
|
||||||
"source.file.date.updated": "Τελευταία ενημέρωση",
|
|
||||||
"source.file.date.created": "Δημιουργήθηκε",
|
"source.file.date.created": "Δημιουργήθηκε",
|
||||||
"tabs.title": "Καρτέλες",
|
"tabs.title": "Καρτέλες",
|
||||||
"toc.title": "Πίνακας περιεχομένων",
|
"toc.title": "Πίνακας περιεχομένων",
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,6 @@
|
||||||
"select.version.title": "Select version",
|
"select.version.title": "Select version",
|
||||||
"skip.link.title": "Skip to content",
|
"skip.link.title": "Skip to content",
|
||||||
"source.link.title": "Go to repository",
|
"source.link.title": "Go to repository",
|
||||||
"source.revision.date": "Last update",
|
|
||||||
"source.file.date.updated": "Last update",
|
"source.file.date.updated": "Last update",
|
||||||
"source.file.date.created": "Created",
|
"source.file.date.created": "Created",
|
||||||
"tabs.title": "Tabs",
|
"tabs.title": "Tabs",
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
"search.result.other": "# kongruaj dokumentoj",
|
"search.result.other": "# kongruaj dokumentoj",
|
||||||
"skip.link.title": "Saltu al enhavo",
|
"skip.link.title": "Saltu al enhavo",
|
||||||
"source.link.title": "Iru al deponejo",
|
"source.link.title": "Iru al deponejo",
|
||||||
"source.revision.date": "Lasta ĝisdatigo",
|
|
||||||
"source.file.date.updated": "Lasta ĝisdatigo",
|
"source.file.date.updated": "Lasta ĝisdatigo",
|
||||||
"source.file.date.created": "Kreita",
|
"source.file.date.created": "Kreita",
|
||||||
"tabs.title": "Langetoj",
|
"tabs.title": "Langetoj",
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
"select.version.title": "Seleccionar versión",
|
"select.version.title": "Seleccionar versión",
|
||||||
"skip.link.title": "Saltar a contenido",
|
"skip.link.title": "Saltar a contenido",
|
||||||
"source.link.title": "Ir al repositorio",
|
"source.link.title": "Ir al repositorio",
|
||||||
"source.revision.date": "Última actualización",
|
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.file.date.created": "Creado",
|
"source.file.date.created": "Creado",
|
||||||
"tabs.title": "Pestañas",
|
"tabs.title": "Pestañas",
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "Leiti # tulemust",
|
"search.result.other": "Leiti # tulemust",
|
||||||
"skip.link.title": "Keri sisuni",
|
"skip.link.title": "Keri sisuni",
|
||||||
"source.link.title": "Ava repositooriumis",
|
"source.link.title": "Ava repositooriumis",
|
||||||
"source.revision.date": "Viimane uuendus",
|
|
||||||
"source.file.date.updated": "Viimane uuendus",
|
"source.file.date.updated": "Viimane uuendus",
|
||||||
"source.file.date.created": "Loodud",
|
"source.file.date.created": "Loodud",
|
||||||
"toc.title": "Sisukord"
|
"toc.title": "Sisukord"
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@
|
||||||
"search.result.other": "# سند یافت شد",
|
"search.result.other": "# سند یافت شد",
|
||||||
"skip.link.title": "پرش به محتویات",
|
"skip.link.title": "پرش به محتویات",
|
||||||
"source.link.title": "رفتن به مخزن",
|
"source.link.title": "رفتن به مخزن",
|
||||||
"source.revision.date": "اخرین بروزرسانی",
|
|
||||||
"source.file.date.updated": "اخرین بروزرسانی",
|
"source.file.date.updated": "اخرین بروزرسانی",
|
||||||
"source.file.date.created": "ایجاد شده",
|
"source.file.date.created": "ایجاد شده",
|
||||||
"toc.title": "فهرست موضوعات"
|
"toc.title": "فهرست موضوعات"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# täsmäävää dokumenttia",
|
"search.result.other": "# täsmäävää dokumenttia",
|
||||||
"skip.link.title": "Hyppää sisältöön",
|
"skip.link.title": "Hyppää sisältöön",
|
||||||
"source.link.title": "Mene repositoryyn",
|
"source.link.title": "Mene repositoryyn",
|
||||||
"source.revision.date": "Viimeisin päivitys",
|
|
||||||
"source.file.date.updated": "Viimeisin päivitys",
|
"source.file.date.updated": "Viimeisin päivitys",
|
||||||
"source.file.date.created": "Luotu",
|
"source.file.date.created": "Luotu",
|
||||||
"toc.title": "Sisällysluettelo"
|
"toc.title": "Sisällysluettelo"
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
"select.version.title": "Sélectionner la version",
|
"select.version.title": "Sélectionner la version",
|
||||||
"skip.link.title": "Aller au contenu",
|
"skip.link.title": "Aller au contenu",
|
||||||
"source.link.title": "Aller au dépôt",
|
"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.updated": "Dernière mise à jour",
|
||||||
"source.file.date.created": "Créé",
|
"source.file.date.created": "Créé",
|
||||||
"tabs.title": "Onglets",
|
"tabs.title": "Onglets",
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
"select.version.title": "Seleccionar version",
|
"select.version.title": "Seleccionar version",
|
||||||
"skip.link.title": "Ir ao contido",
|
"skip.link.title": "Ir ao contido",
|
||||||
"source.link.title": "Ir ao repositorio",
|
"source.link.title": "Ir ao repositorio",
|
||||||
"source.revision.date": "Última actualización",
|
|
||||||
"source.file.date.updated": "Última actualización",
|
"source.file.date.updated": "Última actualización",
|
||||||
"source.file.date.created": "Creada",
|
"source.file.date.created": "Creada",
|
||||||
"tabs.title": "Pestanas",
|
"tabs.title": "Pestanas",
|
||||||
|
|
|
||||||
|
|
@ -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 %}
|
|
||||||
|
|
@ -19,7 +19,6 @@
|
||||||
"search.result.other": "# מסמך תואם",
|
"search.result.other": "# מסמך תואם",
|
||||||
"skip.link.title": "דלג לתוכן",
|
"skip.link.title": "דלג לתוכן",
|
||||||
"source.link.title": "עבור אל מאגר",
|
"source.link.title": "עבור אל מאגר",
|
||||||
"source.revision.date": "העדכון אחרון",
|
|
||||||
"source.file.date.updated": "העדכון אחרון",
|
"source.file.date.updated": "העדכון אחרון",
|
||||||
"source.file.date.created": "נוצר",
|
"source.file.date.created": "נוצר",
|
||||||
"toc.title": "תוכן העניינים"
|
"toc.title": "תוכן העניינים"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
"search.result.other": "# मिलान डाक्यूमेंट्स",
|
||||||
"skip.link.title": "विषय पर बढ़ें",
|
"skip.link.title": "विषय पर बढ़ें",
|
||||||
"source.link.title": "रिपॉजिटरी पर जाएं",
|
"source.link.title": "रिपॉजिटरी पर जाएं",
|
||||||
"source.revision.date": "आखिरी अपडेट",
|
|
||||||
"source.file.date.updated": "आखिरी अपडेट",
|
"source.file.date.updated": "आखिरी अपडेट",
|
||||||
"source.file.date.created": "बनाया था",
|
"source.file.date.created": "बनाया था",
|
||||||
"toc.title": "विषय - सूची"
|
"toc.title": "विषय - सूची"
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "# rezultata pretraživanja",
|
"search.result.other": "# rezultata pretraživanja",
|
||||||
"skip.link.title": "Preskočite na sadržaj",
|
"skip.link.title": "Preskočite na sadržaj",
|
||||||
"source.link.title": "Idite u repozitorij",
|
"source.link.title": "Idite u repozitorij",
|
||||||
"source.revision.date": "Zadnje ažuriranje",
|
|
||||||
"source.file.date.updated": "Zadnje ažuriranje",
|
"source.file.date.updated": "Zadnje ažuriranje",
|
||||||
"source.file.date.created": "Stvoreno",
|
"source.file.date.created": "Stvoreno",
|
||||||
"toc.title": "Sadržaj"
|
"toc.title": "Sadržaj"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@
|
||||||
"search.result.term.missing": "Üres",
|
"search.result.term.missing": "Üres",
|
||||||
"skip.link.title": "Kihagyás",
|
"skip.link.title": "Kihagyás",
|
||||||
"source.link.title": "Főoldalra ugrá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.updated": "Utolsó frissítés",
|
||||||
"source.file.date.created": "Létrehozva",
|
"source.file.date.created": "Létrehozva",
|
||||||
"tabs.title": "Lapok",
|
"tabs.title": "Lapok",
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,6 @@
|
||||||
"search.result.other": "# dokumen ditemukan",
|
"search.result.other": "# dokumen ditemukan",
|
||||||
"skip.link.title": "Lewati ke isi",
|
"skip.link.title": "Lewati ke isi",
|
||||||
"source.link.title": "Menuju repositori",
|
"source.link.title": "Menuju repositori",
|
||||||
"source.revision.date": "Pembaharuan Terakhir",
|
|
||||||
"source.revision.date": "Pembaharuan Terakhir",
|
|
||||||
"source.file.date.created": "Dibuat",
|
"source.file.date.created": "Dibuat",
|
||||||
"toc.title": "Daftar isi"
|
"toc.title": "Daftar isi"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@
|
||||||
"search.result.more.other": "# til viðbótar á þessari síðu",
|
"search.result.more.other": "# til viðbótar á þessari síðu",
|
||||||
"skip.link.title": "Hoppa yfir í efni",
|
"skip.link.title": "Hoppa yfir í efni",
|
||||||
"source.link.title": "Fara í gagnahirslu (e. repository)",
|
"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.updated": "Síðasta uppfærsla",
|
||||||
"source.file.date.created": "Búið til",
|
"source.file.date.created": "Búið til",
|
||||||
"tabs.title": "Flipar",
|
"tabs.title": "Flipar",
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,6 @@
|
||||||
"select.version.title": "Seleziona la versione",
|
"select.version.title": "Seleziona la versione",
|
||||||
"skip.link.title": "Vai al contenuto",
|
"skip.link.title": "Vai al contenuto",
|
||||||
"source.link.title": "Apri repository",
|
"source.link.title": "Apri repository",
|
||||||
"source.revision.date": "Ultimo aggiornamento",
|
|
||||||
"source.file.date.updated": "Ultimo aggiornamento",
|
"source.file.date.updated": "Ultimo aggiornamento",
|
||||||
"source.file.date.created": "Creata",
|
"source.file.date.created": "Creata",
|
||||||
"tabs.title": "Tabs",
|
"tabs.title": "Tabs",
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
"search.result.term.missing": "検索に含まれない",
|
"search.result.term.missing": "検索に含まれない",
|
||||||
"skip.link.title": "コンテンツにスキップ",
|
"skip.link.title": "コンテンツにスキップ",
|
||||||
"source.link.title": "リポジトリへ",
|
"source.link.title": "リポジトリへ",
|
||||||
"source.revision.date": "最終更新日",
|
|
||||||
"source.file.date.updated": "最終更新日",
|
"source.file.date.updated": "最終更新日",
|
||||||
"source.file.date.created": "作成した",
|
"source.file.date.created": "作成した",
|
||||||
"tabs.title": "タブ",
|
"tabs.title": "タブ",
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
"search.result.more.other": "კიდევ # ამ გვერდზე",
|
||||||
"skip.link.title": "კონტენტზე გადასვლა",
|
"skip.link.title": "კონტენტზე გადასვლა",
|
||||||
"source.link.title": "საცავში გადასვლა",
|
"source.link.title": "საცავში გადასვლა",
|
||||||
"source.revision.date": "ბოლო განახლება",
|
|
||||||
"source.file.date.updated": "ბოლო განახლება",
|
"source.file.date.updated": "ბოლო განახლება",
|
||||||
"source.file.date.created": "შეიქმნა",
|
"source.file.date.created": "შეიქმნა",
|
||||||
"tabs.title": "ტაბები",
|
"tabs.title": "ტაბები",
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
"select.version.title": "버전 선택",
|
"select.version.title": "버전 선택",
|
||||||
"skip.link.title": "콘텐츠로 이동",
|
"skip.link.title": "콘텐츠로 이동",
|
||||||
"source.link.title": "저장소로 이동",
|
"source.link.title": "저장소로 이동",
|
||||||
"source.revision.date": "마지막 업데이트",
|
|
||||||
"source.file.date.updated": "마지막 업데이트",
|
"source.file.date.updated": "마지막 업데이트",
|
||||||
"source.file.date.created": "작성일",
|
"source.file.date.created": "작성일",
|
||||||
"toc.title": "목차",
|
"toc.title": "목차",
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
"search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်",
|
"search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်",
|
||||||
"skip.link.title": "မာတိကာ သို့ သွားရန်",
|
"skip.link.title": "မာတိကာ သို့ သွားရန်",
|
||||||
"source.link.title": "repository သို့ သွားရန်",
|
"source.link.title": "repository သို့ သွားရန်",
|
||||||
"source.revision.date": "နောက်ဆုံး ထုတ်ပြန်ချက်",
|
|
||||||
"source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်",
|
"source.file.date.updated": "နောက်ဆုံး ထုတ်ပြန်ချက်",
|
||||||
"source.file.date.created": "နေပြည်တော်",
|
"source.file.date.created": "နေပြည်တော်",
|
||||||
"tabs.title": "တက်များ",
|
"tabs.title": "တက်များ",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# overeenkomende documenten",
|
"search.result.other": "# overeenkomende documenten",
|
||||||
"skip.link.title": "Ga naar inhoud",
|
"skip.link.title": "Ga naar inhoud",
|
||||||
"source.link.title": "Ga naar repository",
|
"source.link.title": "Ga naar repository",
|
||||||
"source.revision.date": "Laatst geüpdatet",
|
|
||||||
"source.file.date.updated": "Laatst geüpdatet",
|
"source.file.date.updated": "Laatst geüpdatet",
|
||||||
"source.file.date.created": "Gecreëerd",
|
"source.file.date.created": "Gecreëerd",
|
||||||
"toc.title": "Inhoudsopgave"
|
"toc.title": "Inhoudsopgave"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# treff",
|
"search.result.other": "# treff",
|
||||||
"skip.link.title": "Gå til innhald",
|
"skip.link.title": "Gå til innhald",
|
||||||
"source.link.title": "Gå til kjelde",
|
"source.link.title": "Gå til kjelde",
|
||||||
"source.revision.date": "Siste oppdatering",
|
|
||||||
"source.file.date.updated": "Siste oppdatering",
|
"source.file.date.updated": "Siste oppdatering",
|
||||||
"source.file.date.created": "Laget",
|
"source.file.date.created": "Laget",
|
||||||
"toc.title": "Innhaldsliste"
|
"toc.title": "Innhaldsliste"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# treff",
|
"search.result.other": "# treff",
|
||||||
"skip.link.title": "Gå til innhold",
|
"skip.link.title": "Gå til innhold",
|
||||||
"source.link.title": "Gå til kilde",
|
"source.link.title": "Gå til kilde",
|
||||||
"source.revision.date": "Siste oppdatering",
|
|
||||||
"source.file.date.updated": "Siste oppdatering",
|
"source.file.date.updated": "Siste oppdatering",
|
||||||
"source.file.date.created": "Created",
|
"source.file.date.created": "Created",
|
||||||
"toc.title": "Innholdsfortegnelse"
|
"toc.title": "Innholdsfortegnelse"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@
|
||||||
"search.result.term.missing": "Brak",
|
"search.result.term.missing": "Brak",
|
||||||
"skip.link.title": "Przejdź do treści",
|
"skip.link.title": "Przejdź do treści",
|
||||||
"source.link.title": "Idź do repozytorium",
|
"source.link.title": "Idź do repozytorium",
|
||||||
"source.revision.date": "Ostatnia aktualizacja",
|
|
||||||
"source.file.date.updated": "Ostatnia aktualizacja",
|
"source.file.date.updated": "Ostatnia aktualizacja",
|
||||||
"source.file.date.created": "Utworzony",
|
"source.file.date.created": "Utworzony",
|
||||||
"tabs.title": "Zakładki",
|
"tabs.title": "Zakładki",
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@
|
||||||
"select.version.title": "Selecione a versão",
|
"select.version.title": "Selecione a versão",
|
||||||
"skip.link.title": "Ir para o conteúdo",
|
"skip.link.title": "Ir para o conteúdo",
|
||||||
"source.link.title": "Ir ao repositório",
|
"source.link.title": "Ir ao repositório",
|
||||||
"source.revision.date": "Última atualização",
|
|
||||||
"source.file.date.updated": "Última atualização",
|
"source.file.date.updated": "Última atualização",
|
||||||
"source.file.date.created": "Criada",
|
"source.file.date.created": "Criada",
|
||||||
"tabs.title": "Abas",
|
"tabs.title": "Abas",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# documente găsite",
|
"search.result.other": "# documente găsite",
|
||||||
"skip.link.title": "Sari la conținut",
|
"skip.link.title": "Sari la conținut",
|
||||||
"source.link.title": "Accesează repository-ul",
|
"source.link.title": "Accesează repository-ul",
|
||||||
"source.revision.date": "Ultima actualizare",
|
|
||||||
"source.file.date.updated": "Ultima actualizare",
|
"source.file.date.updated": "Ultima actualizare",
|
||||||
"source.file.date.created": "Creată",
|
"source.file.date.created": "Creată",
|
||||||
"toc.title": "Cuprins"
|
"toc.title": "Cuprins"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "Найдено # совпадений",
|
"search.result.other": "Найдено # совпадений",
|
||||||
"skip.link.title": "Перейти к содержанию",
|
"skip.link.title": "Перейти к содержанию",
|
||||||
"source.link.title": "Перейти к репозиторию",
|
"source.link.title": "Перейти к репозиторию",
|
||||||
"source.revision.date": "Последнее обновление",
|
|
||||||
"source.file.date.updated": "Последнее обновление",
|
"source.file.date.updated": "Последнее обновление",
|
||||||
"source.file.date.created": "Созданный",
|
"source.file.date.created": "Созданный",
|
||||||
"toc.title": "Содержание"
|
"toc.title": "Содержание"
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@
|
||||||
"select.version.title": "Izaberi verziju",
|
"select.version.title": "Izaberi verziju",
|
||||||
"skip.link.title": "Idi na tekst",
|
"skip.link.title": "Idi na tekst",
|
||||||
"source.link.title": "Idi u repozitorijum",
|
"source.link.title": "Idi u repozitorijum",
|
||||||
"source.revision.date": "Ažuriran",
|
|
||||||
"source.file.date.updated": "Ažuriran",
|
"source.file.date.updated": "Ažuriran",
|
||||||
"source.file.date.created": "Kreiran",
|
"source.file.date.created": "Kreiran",
|
||||||
"tabs.title": "Tabovi",
|
"tabs.title": "Tabovi",
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,6 @@
|
||||||
"search.result.more.other": "තව ප්රතිඵල # ක්",
|
"search.result.more.other": "තව ප්රතිඵල # ක්",
|
||||||
"skip.link.title": "අන්තර්ගතය වෙත යන්න",
|
"skip.link.title": "අන්තර්ගතය වෙත යන්න",
|
||||||
"source.link.title": "රිපොසිටරියට යන්න",
|
"source.link.title": "රිපොසිටරියට යන්න",
|
||||||
"source.revision.date": "අවසන් යාවත්කාලීන වීම",
|
|
||||||
"source.file.date.updated": "අවසන් යාවත්කාලීන වීම",
|
"source.file.date.updated": "අවසන් යාවත්කාලීන වීම",
|
||||||
"source.file.date.created": "ٺاھيو ويو",
|
"source.file.date.created": "ٺاھيو ويو",
|
||||||
"tabs.title": "ටැබ්ස්",
|
"tabs.title": "ටැබ්ස්",
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "Vyhovujúce dokumenty: #",
|
"search.result.other": "Vyhovujúce dokumenty: #",
|
||||||
"skip.link.title": "Preskočiť na obsah",
|
"skip.link.title": "Preskočiť na obsah",
|
||||||
"source.link.title": "Zobraziť repozitár",
|
"source.link.title": "Zobraziť repozitár",
|
||||||
"source.revision.date": "Posledná aktualizácia",
|
|
||||||
"source.file.date.updated": "Posledná aktualizácia",
|
"source.file.date.updated": "Posledná aktualizácia",
|
||||||
"source.file.date.created": "Vytvorené",
|
"source.file.date.created": "Vytvorené",
|
||||||
"toc.title": "Obsah"
|
"toc.title": "Obsah"
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
"search.result.other": "# zadetkov",
|
"search.result.other": "# zadetkov",
|
||||||
"skip.link.title": "Skoči na vsebino",
|
"skip.link.title": "Skoči na vsebino",
|
||||||
"source.link.title": "Pojdi na repozitorij",
|
"source.link.title": "Pojdi na repozitorij",
|
||||||
"source.revision.date": "Zadnja posodobitev",
|
|
||||||
"source.file.date.updated": "Zadnja posodobitev",
|
"source.file.date.updated": "Zadnja posodobitev",
|
||||||
"source.file.date.created": "Ustvarjeno",
|
"source.file.date.created": "Ustvarjeno",
|
||||||
"toc.title": "Kazalo"
|
"toc.title": "Kazalo"
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@
|
||||||
"select.version.title": "Изабери верзију",
|
"select.version.title": "Изабери верзију",
|
||||||
"skip.link.title": "Иди на текст",
|
"skip.link.title": "Иди на текст",
|
||||||
"source.link.title": "Иди у репозиторијум",
|
"source.link.title": "Иди у репозиторијум",
|
||||||
"source.revision.date": "Ажуриран",
|
|
||||||
"source.file.date.updated": "Ажуриран",
|
"source.file.date.updated": "Ажуриран",
|
||||||
"source.file.date.created": "Креиран",
|
"source.file.date.created": "Креиран",
|
||||||
"tabs.title": "Табови",
|
"tabs.title": "Табови",
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
"nav.title": "Navigation",
|
"nav.title": "Navigation",
|
||||||
"search.config.lang": "sv",
|
"search.config.lang": "sv",
|
||||||
"search.placeholder": "Sök",
|
"search.placeholder": "Sök",
|
||||||
|
"search.share": "Dela",
|
||||||
"search.reset": "Rensa",
|
"search.reset": "Rensa",
|
||||||
"search.result.initializer": "Initialiserar sök",
|
"search.result.initializer": "Initialiserar sök",
|
||||||
"search.result.placeholder": "Skriv sökord",
|
"search.result.placeholder": "Skriv sökord",
|
||||||
|
|
@ -24,11 +25,14 @@
|
||||||
"search.result.more.one": "1 till på denna sidan",
|
"search.result.more.one": "1 till på denna sidan",
|
||||||
"search.result.more.other": "# till på denna sidan",
|
"search.result.more.other": "# till på denna sidan",
|
||||||
"search.result.term.missing": "Saknas",
|
"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",
|
"skip.link.title": "Gå till innehållet",
|
||||||
"source.link.title": "Gå till datakatalog",
|
"source.link.title": "Gå till datakatalog",
|
||||||
"source.revision.date": "Senaste uppdateringen",
|
"source.file.date.updated": "Senaste uppdaterad",
|
||||||
"source.file.date.updated": "Senaste uppdateringen",
|
|
||||||
"source.file.date.created": "Skapad",
|
"source.file.date.created": "Skapad",
|
||||||
"tabs.title": "Flikar",
|
"tabs.title": "Flikar",
|
||||||
"toc.title": "Innehållsförteckning"
|
"toc.title": "Innehållsförteckning"
|
||||||
|
"top.title": "Tillbaka till toppen"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "พบ # เอกสารที่ตรงกัน",
|
"search.result.other": "พบ # เอกสารที่ตรงกัน",
|
||||||
"skip.link.title": "ข้ามไปที่เนื้อหา",
|
"skip.link.title": "ข้ามไปที่เนื้อหา",
|
||||||
"source.link.title": "ไปที่ Repository",
|
"source.link.title": "ไปที่ Repository",
|
||||||
"source.revision.date": "สร้าง",
|
|
||||||
"source.file.date.updated": "สร้าง",
|
"source.file.date.updated": "สร้าง",
|
||||||
"source.file.date.created": "สร้าง",
|
"source.file.date.created": "สร้าง",
|
||||||
"toc.title": "สารบัญ"
|
"toc.title": "สารบัญ"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# doküman bulundu",
|
"search.result.other": "# doküman bulundu",
|
||||||
"skip.link.title": "Ana içeriğe geç",
|
"skip.link.title": "Ana içeriğe geç",
|
||||||
"source.link.title": "Depoya git",
|
"source.link.title": "Depoya git",
|
||||||
"source.revision.date": "Son Güncelleme",
|
|
||||||
"source.file.date.updated": "Son Güncelleme",
|
"source.file.date.updated": "Son Güncelleme",
|
||||||
"source.file.date.created": "Oluşturuldu",
|
"source.file.date.created": "Oluşturuldu",
|
||||||
"toc.title": "İçindekiler"
|
"toc.title": "İçindekiler"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "Знайдено # збігів",
|
"search.result.other": "Знайдено # збігів",
|
||||||
"skip.link.title": "Перейти до змісту",
|
"skip.link.title": "Перейти до змісту",
|
||||||
"source.link.title": "Перейти до репозиторію",
|
"source.link.title": "Перейти до репозиторію",
|
||||||
"source.revision.date": "Останнє оновлення",
|
|
||||||
"source.file.date.updated": "Останнє оновлення",
|
"source.file.date.updated": "Останнє оновлення",
|
||||||
"source.file.date.created": "Створено",
|
"source.file.date.created": "Створено",
|
||||||
"toc.title": "Зміст"
|
"toc.title": "Зміст"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"search.result.other": "# tài liệu liên quan",
|
"search.result.other": "# tài liệu liên quan",
|
||||||
"skip.link.title": "Vào thẳng nội dung",
|
"skip.link.title": "Vào thẳng nội dung",
|
||||||
"source.link.title": "Đến kho lưu trữ mã nguồn",
|
"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.updated": "Cập nhật cuối cùng",
|
||||||
"source.file.date.created": "Tạo",
|
"source.file.date.created": "Tạo",
|
||||||
"toc.title": "Mục lục"
|
"toc.title": "Mục lục"
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@
|
||||||
"search.result.other": "# 個符合條件的結果",
|
"search.result.other": "# 個符合條件的結果",
|
||||||
"skip.link.title": "跳轉至",
|
"skip.link.title": "跳轉至",
|
||||||
"source.link.title": "前往倉庫",
|
"source.link.title": "前往倉庫",
|
||||||
"source.revision.date": "最後更新",
|
|
||||||
"source.file.date.updated": "最後更新",
|
"source.file.date.updated": "最後更新",
|
||||||
"source.file.date.created": "建立日期",
|
"source.file.date.created": "建立日期",
|
||||||
"toc.title": "目錄"
|
"toc.title": "目錄"
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@
|
||||||
"search.result.other": "找到 # 個符合的項目",
|
"search.result.other": "找到 # 個符合的項目",
|
||||||
"skip.link.title": "跳轉到",
|
"skip.link.title": "跳轉到",
|
||||||
"source.link.title": "前往倉庫",
|
"source.link.title": "前往倉庫",
|
||||||
"source.revision.date": "最後更新",
|
|
||||||
"source.file.date.updated": "最後更新",
|
"source.file.date.updated": "最後更新",
|
||||||
"source.file.date.created": "建立日期",
|
"source.file.date.created": "建立日期",
|
||||||
"toc.title": "目錄"
|
"toc.title": "目錄"
|
||||||
|
|
|
||||||
|
|
@ -3,26 +3,39 @@
|
||||||
-#}
|
-#}
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "zh",
|
"language": "zh",
|
||||||
|
"direction": "ltr",
|
||||||
"clipboard.copy": "复制",
|
"clipboard.copy": "复制",
|
||||||
"clipboard.copied": "已复制",
|
"clipboard.copied": "已复制",
|
||||||
"edit.link.title": "编辑此页",
|
"edit.link.title": "编辑此页",
|
||||||
"footer.previous": "上一页",
|
"footer.previous": "上一页",
|
||||||
"footer.next": "下一页",
|
"footer.next": "下一页",
|
||||||
|
"footer.title": "页脚",
|
||||||
|
"header.title": "页眉",
|
||||||
"meta.comments": "评论",
|
"meta.comments": "评论",
|
||||||
"meta.source": "来源",
|
"meta.source": "来源",
|
||||||
|
"nav.title": "导航栏",
|
||||||
"search.config.lang": "ja",
|
"search.config.lang": "ja",
|
||||||
"search.config.pipeline": "trimmer, stemmer",
|
"search.config.pipeline": "trimmer, stemmer",
|
||||||
"search.config.separator": "[\,\。]+",
|
"search.config.separator": "[\,\。]+",
|
||||||
"search.placeholder": "搜索",
|
"search.placeholder": "搜索",
|
||||||
|
"search.share": "分享",
|
||||||
|
"search.reset": "清空当前内容",
|
||||||
"search.result.initializer": "正在初始化搜索引擎",
|
"search.result.initializer": "正在初始化搜索引擎",
|
||||||
"search.result.placeholder": "键入以开始搜索",
|
"search.result.placeholder": "键入以开始搜索",
|
||||||
"search.result.none": "没有找到符合条件的结果",
|
"search.result.none": "没有找到符合条件的结果",
|
||||||
"search.result.one": "找到 1 个符合条件的结果",
|
"search.result.one": "找到 1 个符合条件的结果",
|
||||||
"search.result.other": "# 个符合条件的结果",
|
"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": "跳转至",
|
"skip.link.title": "跳转至",
|
||||||
"source.link.title": "前往仓库",
|
"source.link.title": "前往仓库",
|
||||||
"source.revision.date": "最后更新",
|
|
||||||
"source.file.date.updated": "最后更新",
|
"source.file.date.updated": "最后更新",
|
||||||
"source.file.date.created": "创建日期",
|
"source.file.date.created": "创建日期",
|
||||||
"toc.title": "目录"
|
"tabs.title": "标签",
|
||||||
|
"toc.title": "目录",
|
||||||
|
"top.title": "回到页面顶部"
|
||||||
}[key] }}{% endmacro %}
|
}[key] }}{% endmacro %}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
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">
|
<div class="md-search" data-md-component="search" role="dialog">
|
||||||
<label class="md-search__overlay" for="__search"></label>
|
<label class="md-search__overlay" for="__search"></label>
|
||||||
<div class="md-search__inner" role="search">
|
<div class="md-search__inner" role="search">
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,15 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
This file was automatically generated - do not edit
|
||||||
-#}
|
-#}
|
||||||
{% if config.extra.social %}
|
<div class="md-social">
|
||||||
<div class="md-footer-social">
|
{% for social in config.extra.social %}
|
||||||
{% for social in config.extra.social %}
|
{% set title = social.name %}
|
||||||
{% set title = social.name %}
|
{% if not title and "//" in social.link %}
|
||||||
{% if not title and "//" in social.link %}
|
{% set _, url = social.link.split("//") %}
|
||||||
{% set _,url = social.link.split("//") %}
|
{% set title = url.split("/")[0] %}
|
||||||
{% set title = url.split("/")[0] %}
|
{% endif %}
|
||||||
{% endif %}
|
<a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-social__link">
|
||||||
<a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="md-footer-social__link">
|
{% include ".icons/" ~ social.icon ~ ".svg" %}
|
||||||
{% include ".icons/" ~ social.icon ~ ".svg" %}
|
</a>
|
||||||
</a>
|
{% endfor %}
|
||||||
{% endfor %}
|
</div>
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% include "partials/source-file.html" %}
|
|
||||||
|
|
@ -1,18 +1,20 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
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>
|
<hr>
|
||||||
<div class="md-source-date">
|
<div class="md-source-file">
|
||||||
<small>
|
<small>
|
||||||
{% if page.meta.git_revision_date_localized %}
|
{% 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 %}
|
{% 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 %}
|
{% endif %}
|
||||||
{% elif page.meta.revision_date %}
|
{% elif page.meta.revision_date %}
|
||||||
{{ label }}: {{ page.meta.revision_date }}
|
{{ lang.t("source.file.date.updated") }}:
|
||||||
|
{{ page.meta.revision_date }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
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">
|
<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">
|
<div class="md-source__icon md-icon">
|
||||||
{% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %}
|
{% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
{#-
|
{#-
|
||||||
This file was automatically generated - do not edit
|
This file was automatically generated - do not edit
|
||||||
-#}
|
-#}
|
||||||
{% import "partials/language.html" as lang with context %}
|
{% set title = lang.t("toc.title") %}
|
||||||
{% set title = title | default(lang.t("toc.title")) %}
|
|
||||||
{% if config.mdx_configs.toc and config.mdx_configs.toc.title %}
|
{% if config.mdx_configs.toc and config.mdx_configs.toc.title %}
|
||||||
{% set title = config.mdx_configs.toc.title %}
|
{% set title = config.mdx_configs.toc.title %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
|
|
@ -148,7 +148,7 @@ markdown_extensions:
|
||||||
- pymdownx.superfences:
|
- pymdownx.superfences:
|
||||||
custom_fences:
|
custom_fences:
|
||||||
- name: mermaid
|
- name: mermaid
|
||||||
class: mermaid-experimental
|
class: mermaid
|
||||||
format: !!python/name:pymdownx.superfences.fence_code_format
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
||||||
- pymdownx.tabbed:
|
- pymdownx.tabbed:
|
||||||
alternate_style: true
|
alternate_style: true
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue