include RegExp feature into README
This commit is contained in:
parent
1fe1eb72ca
commit
b0374128be
29
README.md
29
README.md
|
@ -31,23 +31,37 @@ Put tags in **Tags names** field search will be completed across the vault, use
|
||||||
Click Refresh
|
Click Refresh
|
||||||
Update **Existing Characters** field with a pattern you are looking for in existing notes, set **Replacement Symbols**
|
Update **Existing Characters** field with a pattern you are looking for in existing notes, set **Replacement Symbols**
|
||||||
|
|
||||||
|
## Search By RegExp
|
||||||
|
Usage of Search By RegExp
|
||||||
|
You have two fields, RegExp pattern, and RegExp Flags
|
||||||
|
|
||||||
|
RegExp pattern will be wrapped into `/ /`
|
||||||
|
|
||||||
|
## Supported flags:
|
||||||
|
|
||||||
|
- **g** - global
|
||||||
|
- **i** - ignore case
|
||||||
|
- **m** - multiline anchors
|
||||||
|
- **s** - dot matches all (aka singleline) - works even when not natively supported
|
||||||
|
- **u** - unicode (ES6)
|
||||||
|
- **y** - sticky (Firefox 3+, ES6)
|
||||||
|
- **n** - explicit capture
|
||||||
|
- **x** - free-spacing and line comments (aka extended)
|
||||||
|
- **A** - astral (requires the Unicode Base addon)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Click Preview or `Enter` to see intermediate results(nothing will be changed/moved/renamed).
|
Click Preview or `Enter` to see intermediate results(nothing will be changed/moved/renamed).
|
||||||
|
|
||||||
Click `Rename` whenever you done
|
Click `Rename` whenever you're done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Update files based on tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
- **folder location** - Files from which folder you need to rename
|
- **folder location** - Files from which folder you need to rename
|
||||||
- **Symbols in existing files** - the symbols/characters that we have in the files
|
- **Symbols in existing files** - the symbols/characters that we have in the files
|
||||||
- **Replacement Symbols** - a new symbols that will be pasted instead
|
- **Replacement Symbols** - a new symbols that will be pasted instead
|
||||||
- **Files within the folder** - this is for information purpose
|
- **Files within the folder** - this is for information purpose
|
||||||
|
- **RegExp pattern** - pattern of RegExp to match
|
||||||
|
- **RegExp flags** - flags that will be applied to RegExp pattern
|
||||||
|
|
||||||
Rename Button
|
Rename Button
|
||||||
Rename files will start renaming all files by respective path.
|
Rename files will start renaming all files by respective path.
|
||||||
|
@ -63,7 +77,6 @@ Why Not to have this functionality build-in into Obsidian?
|
||||||
|
|
||||||
And rename a **bunch of files** and update their reference in code base respectively. So now you can rename a bunch of files from the directory and all imports also will be updated in a code-base
|
And rename a **bunch of files** and update their reference in code base respectively. So now you can rename a bunch of files from the directory and all imports also will be updated in a code-base
|
||||||
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
Follow the steps below to install Tasks.
|
Follow the steps below to install Tasks.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue