mirror of
https://gitlab.com/upRootNutrition/obsidian.git
synced 2025-06-16 05:15:14 -05:00
Initial commit
This commit is contained in:
commit
bc15d67574
1475 changed files with 1056167 additions and 0 deletions
10
.obsidian/plugins/obsidian-regex-replace/data.json
vendored
Normal file
10
.obsidian/plugins/obsidian-regex-replace/data.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"findText": "",
|
||||
"replaceText": "",
|
||||
"useRegEx": true,
|
||||
"selOnly": false,
|
||||
"caseInsensitive": false,
|
||||
"processLineBreak": false,
|
||||
"processTab": false,
|
||||
"prefillFind": false
|
||||
}
|
320
.obsidian/plugins/obsidian-regex-replace/main.js
vendored
Normal file
320
.obsidian/plugins/obsidian-regex-replace/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-regex-replace/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-regex-replace/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"author": "Martin Eder",
|
||||
"authorUrl": "https://www.gruware.org",
|
||||
"description": "Find and replace text using regular expressions.",
|
||||
"id": "obsidian-regex-replace",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "0.12.17",
|
||||
"name": "Regex Find/Replace",
|
||||
"version": "1.2.0"
|
||||
}
|
51
.obsidian/plugins/obsidian-regex-replace/styles.css
vendored
Normal file
51
.obsidian/plugins/obsidian-regex-replace/styles.css
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
.find-replace-modal .modal-content .row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .row .input-label {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .row .postfix-label {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
margin-left: 8px;
|
||||
justify-content: flex-end;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .row .check-label {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .row .input-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .row .input-wrapper input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.find-replace-modal .modal-content .button-wrapper {
|
||||
justify-content: center;
|
||||
margin-top: 16px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue