Releases: wilhelmer/mkdocs-unused-files
Releases · wilhelmer/mkdocs-unused-files
mkdocs-unused-files-0.2.0
- Changed behavior of the
excluded_files
option. Now accept wildcards, e.g.,foo-*.jpg
(#8)
Note that the exclude_files
option no longer supports paths. For example, if you excluded css/favicon.png
, change the entry to favicon.png
. This will exclude all files named favicon.png
in all directories.
mkdocs-unused-files-0.1.7
- Added bs4 dependency (#7).
- Added info message that the plugin is disabled when
mkdocs serve
is used.
mkdocs-unused-files-0.1.6
- Added the
enabled
option: This option specifies whether the plugin is enabled when building your project. If you want to switch the plugin off, e.g. for local builds, use an environment variable. Defaults totrue
. - Disabled plugin when
mkdocs serve
is used (#6).
mkdocs-unused-files-0.1.5
- Added the
excluded_files
option (#4):
List of files (relative todir
) which are explicitly excluded. Works in combination withfile_types
. Defaults to[]
. - Added the
strict
option (#4):
Elevates the log level towarning
. This allows you to use MkDocs' strict flag (mkdocs build -s
) to abort a build if unused files exist. Defaults tofalse
.
mkdocs-unused-files-0.1.4
- Improved reliability when MkDocs'
use_directory_urls
option is enabled
mkdocs-unused-files-0.1.3
- Normalize paths for Windows compatibility
mkdocs-unused-files-0.1.2
- Add note about template files in Readme
- Refactoring
mkdocs-unused-files-0.1.1
- Improved support for complex directory structures
- Now also works when
use_directory_urls
is omitted or set totrue
(experimental)
mkdocs-unused-files-0.1.0
- Initial release.