v1.2.0 - 2023-10-17
This release adds some more control over minifierplugin by adding the following settings:
cache_enabled
- controls if cache is enabled both globally and per file type (cache is enabled by default),exclude
- list of files and/or directories that are excluded from minification both globally and per file type (by default list of exclusion is empty),extensions
- defines file extensions for each file type.
Exclusion file name pattern
exclude
setting allows defining exact match like some_file.jpg
or by pattern like some_jpg_files_in_dir/some*.jpg
. To match all subdirectories, you have to use **
as a pattern, for example match_all_files_in_subdirs/**/*
.
Use it with caution, since using this pattern can be time-consuming (more information can be found at this link).
The obsidianplugin, now supports:
- comments,
- MathJax - right now you need to configure it manually, in the future it will be done automatically when this plugin is enabled,
- mixed type lists - right now you need to configure it manually, in the future it will be done automatically when this plugin is enabled.
I have also added some issue templates on project repository, so if you find some issue or have a future request, fell free to report a new issue.
Changelog¶
Obsidian¶
- ❎ support for comments syntax
- ✅ links for file names with space
Minifier¶
- ❎ setting for file extensions
- ❎ setting for file exclusion
- ❎ setting for enabling cache
- ✅ extensions are no longer case-sensitive
- ✅ minified file detection is no longer case-sensitive
Legend
❎ - added ✅ - fixed ♻️ - changed 🚫 - removed