mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Updated Insiders changelog
This commit is contained in:
parent
f9044530e6
commit
ff4cf19f8d
@ -1,3 +1,7 @@
|
|||||||
|
mkdocs-material-8.0.2+insiders-4.1.0 (2021-11-30)
|
||||||
|
|
||||||
|
* Added support for passing page title to feedback forms
|
||||||
|
|
||||||
mkdocs-material-8.0.2 (2021-11-30)
|
mkdocs-material-8.0.2 (2021-11-30)
|
||||||
|
|
||||||
* Fixed #3275: Code annotations always disappear on click
|
* Fixed #3275: Code annotations always disappear on click
|
||||||
|
@ -173,7 +173,7 @@ Then, e.g. to override the site title, add the following lines to `main.html`:
|
|||||||
The following template blocks are provided by the theme:
|
The following template blocks are provided by the theme:
|
||||||
|
|
||||||
| Block name | Purpose |
|
| Block name | Purpose |
|
||||||
|:------------------|:------------------------------------------------|
|
| :---------------- | :---------------------------------------------- |
|
||||||
| `analytics` | Wraps the Google Analytics integration |
|
| `analytics` | Wraps the Google Analytics integration |
|
||||||
| `announce` | Wraps the announcement bar |
|
| `announce` | Wraps the announcement bar |
|
||||||
| `config` | Wraps the JavaScript application config |
|
| `config` | Wraps the JavaScript application config |
|
||||||
|
@ -6,6 +6,10 @@ template: overrides/main.html
|
|||||||
|
|
||||||
## Material for MkDocs Insiders
|
## Material for MkDocs Insiders
|
||||||
|
|
||||||
|
### 4.1.0 <small>_ November 30, 2021</small> { id="4.0.0" }
|
||||||
|
|
||||||
|
- Added support for passing page title to feedback forms
|
||||||
|
|
||||||
### 4.0.0 <small>_ November 28, 2021</small> { id="4.0.0" }
|
### 4.0.0 <small>_ November 28, 2021</small> { id="4.0.0" }
|
||||||
|
|
||||||
- Removed deprecated content tabs legacy implementation
|
- Removed deprecated content tabs legacy implementation
|
||||||
|
@ -168,11 +168,14 @@ The following properties must be set for each rating:
|
|||||||
The value of this property is shown after the user selected the rating.
|
The value of this property is shown after the user selected the rating.
|
||||||
It may contain arbitrary HTML tags, which is especially useful to ask the
|
It may contain arbitrary HTML tags, which is especially useful to ask the
|
||||||
user to provide more detailed feedback for the current page through a form.
|
user to provide more detailed feedback for the current page through a form.
|
||||||
It's also possible to pre-fill forms with the path to the current page by
|
It's also possible to pre-fill forms with the URL and title of the current
|
||||||
using the `{}` placeholder, e.g.:
|
page by using the following placeholders:
|
||||||
|
|
||||||
``` url
|
- `{url}` – Page URL
|
||||||
https://github.com/<username>/<repository>/issues/new/?title=[Feedback]+{}
|
- `{title}` – Page title
|
||||||
|
|
||||||
|
```
|
||||||
|
https://github.com/.../issues/new/?title=[Feedback]+{title}+-+{url}
|
||||||
```
|
```
|
||||||
|
|
||||||
In this example, when clicking the link, the user is redirected to the "new
|
In this example, when clicking the link, the user is redirected to the "new
|
||||||
@ -180,7 +183,7 @@ The following properties must be set for each rating:
|
|||||||
of the current document, e.g.:
|
of the current document, e.g.:
|
||||||
|
|
||||||
```
|
```
|
||||||
[Feedback] /setup/setting-up-site-analytics/
|
[Feedback] Setting up site analytics – /setup/setting-up-site-analytics/
|
||||||
```
|
```
|
||||||
|
|
||||||
An alternative to GitHub issues is [Google Forms].
|
An alternative to GitHub issues is [Google Forms].
|
||||||
|
Loading…
Reference in New Issue
Block a user