Skip to content

Commit 4bfda0b

Browse files
author
Laurent Franceschetti
committed
Fix issue with changelog no longer displayed (#186)
- It was a problem with include-markdown directive, between doc examples and the 'real' include of the changelog; solved it by changing the syntax of the 'real' include. - Updated changelog - Bumped version number
1 parent 82c5cdd commit 4bfda0b

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.0.5, 2023-10-31
8+
9+
* Added: git.short_tag (#183)
10+
* Added: Mermaid diagrams in the documentation (Readthedocs)
11+
* Fixed: Changelog was no longer displayed (#186)
12+
713
## 1.0.4, 2023-08-07
814

915
* Fixed: Warning due to filter issue with mkdocs >= 1.5

webdoc/docs/advanced.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ To include external files within a page, you may use the
2121

2222
```jinja2
2323
## Paragraph
24-
2524
{% include 'snippet.md' %}
2625
```
2726

webdoc/docs/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

2-
{%
2+
[%
33
include-markdown "../../CHANGELOG.md"
4-
%}
4+
%]

webdoc/mkdocs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ plugins:
5252
# 1. a question of "boostrap" (avoid chicken and the egg issues)
5353
# 2. avoid interpreting the jinja2 code examples as instructions.
5454
- search
55-
# - include-markdown
55+
- include-markdown:
56+
# This is changed so that real include doesn't interefere with examples
57+
opening_tag: "[%"
58+
closing_tag: "%]"
5659
- mermaid2
5760

5861

0 commit comments

Comments
 (0)