Releases: wilhelmer/mkdocs-unused-files
Releases · wilhelmer/mkdocs-unused-files
Release list
mkdocs-unused-files-0.2.0
- Changed behavior of the
excluded_filesoption. 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 serveis used.
mkdocs-unused-files-0.1.6
- Added the
enabledoption: 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 serveis used (#6).
mkdocs-unused-files-0.1.5
- Added the
excluded_filesoption (#4):
List of files (relative todir) which are explicitly excluded. Works in combination withfile_types. Defaults to[]. - Added the
strictoption (#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_urlsoption 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_urlsis omitted or set totrue(experimental)