mondeja/mkdocs-include-markdown-plugin (mkdocs-include-markdown-plugin)
### [`v7.0.0`](https://redirect.github.com/mondeja/mkdocs-include-markdown-plugin/releases/tag/v7.0.0)
[Compare Source](https://redirect.github.com/mondeja/mkdocs-include-markdown-plugin/compare/v6.2.2...v7.0.0)
#### Breaking changes
##### No longer installable on Python v3.8
Minimum Python version for installation is v3.9. Python v3.8 reached his end of life at 2024-10-07.
##### Comments are turned off by default
Before this release, the default value for `comments` argument of `include-markdown` directive was `true`. Now has been switched to `false`. This prevents some inconvenients, for example, trying to include one-line texts on table cells and list items.
If you want the previous behaviour, configure `comments` as `true` in the global configuration:
```yaml
plugins:
- include-markdown:
comments: true
```
##### Indented code blocks must be surrounded by newlines
Now mkdocs-include-markdown-plugin will only detect indented code blocks if are surrounded by newlines, conforming to [CommonMark specification](https://spec.commonmark.org/0.28/#indented-code-blocks).
In the practice this means that you must surround indented code blocks with newlines or possible link targets URLs will be rewritten to work in relative files. For example, the next code is not treated as an indented code block any more and will break:
```markdown
Foo
const auto lambda = []() { .... };
```
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
^6.0.1
->^7.0.0
Release Notes
mondeja/mkdocs-include-markdown-plugin (mkdocs-include-markdown-plugin)
### [`v7.0.0`](https://redirect.github.com/mondeja/mkdocs-include-markdown-plugin/releases/tag/v7.0.0) [Compare Source](https://redirect.github.com/mondeja/mkdocs-include-markdown-plugin/compare/v6.2.2...v7.0.0) #### Breaking changes ##### No longer installable on Python v3.8 Minimum Python version for installation is v3.9. Python v3.8 reached his end of life at 2024-10-07. ##### Comments are turned off by default Before this release, the default value for `comments` argument of `include-markdown` directive was `true`. Now has been switched to `false`. This prevents some inconvenients, for example, trying to include one-line texts on table cells and list items. If you want the previous behaviour, configure `comments` as `true` in the global configuration: ```yaml plugins: - include-markdown: comments: true ``` ##### Indented code blocks must be surrounded by newlines Now mkdocs-include-markdown-plugin will only detect indented code blocks if are surrounded by newlines, conforming to [CommonMark specification](https://spec.commonmark.org/0.28/#indented-code-blocks). In the practice this means that you must surround indented code blocks with newlines or possible link targets URLs will be rewritten to work in relative files. For example, the next code is not treated as an indented code block any more and will break: ```markdown Foo const auto lambda = []() { .... }; ```Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.