Releases: mondeja/mkdocs-include-markdown-plugin
Releases · mondeja/mkdocs-include-markdown-plugin
v3.5.1
Bug fixes:
- Fixed nested inclusions showing incorrect warning messages.
- Fixed error skipping relative URLs rewriting in indented codeblocks using Windows newlines.
Enhancements:
- Allow to pass string arguments wrapped by single quotes
'
escaping them with\'
. - Show errors if
filename
,end
,start
orexclude
arguments are empty. - Show error rather than raising an exception if a file to be included is not found.
- Show error rather than raising an exception if a parsed boolean value is not valid.
- Improved warning messages adding affected line number and directive.
v3.5.0
New features:
- New option
trailing-newlines
for both directives to strip trailing newlines from content to include. - Both directives accept now recursive
**
wildcard globbing to match against subdirectories including multiple files.
Enhancements:
- String arguments
filename
,start
,end
andexclude
now accept double quotes"
in values escaping them with\"
.
v3.4.1
Bug fixes:
- Fixed offset application not skipped in codeblocks at nested Markdown blocks.
- Fixed incorrect output skipping relative URL rewritings in indented codeblocks.
Enhancements:
- Optimize migrating from
pathlib
toos.path
. - Some tiny performance optimizations processing text.
v3.4.0
Enhancements:
- Warn if
end
orstart
arguments are not detected inside content to include.
v3.3.0
Enhancements:
- Remove upper and lower limits for
heading-offset
argument. - Accept negative arguments for
heading-offset
argument to decrease heading depth.
v3.2.3
v3.2.2
- Fixed rewriting of relative links inside codeblocks.
- Added French translation for documentation.
v3.2.1
- Fixed encoding error in Windows including asian characters (#75, reported by @yaroslav-khomyak in #74).
v3.2.0
Enhancements:
- Allow to pass relative and absolute globs for filenames including multiple files at once.
New features:
- New argument
exclude
for both directives to ignore certain files from being included. Also accepts relative and absolute globs.