init
This commit is contained in:
commit
971e49db5c
246 changed files with 93082 additions and 0 deletions
3
.obsidian/plugins/archivist-importer/data.json
vendored
Normal file
3
.obsidian/plugins/archivist-importer/data.json
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"apiKey": "ob"
|
||||
}
|
||||
22484
.obsidian/plugins/archivist-importer/main.js
vendored
Normal file
22484
.obsidian/plugins/archivist-importer/main.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
10
.obsidian/plugins/archivist-importer/manifest.json
vendored
Normal file
10
.obsidian/plugins/archivist-importer/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "archivist-importer",
|
||||
"name": "Archivist Importer",
|
||||
"version": "0.1.7",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "Import selected vault files into Archivist campaigns.",
|
||||
"author": "Archivist AI",
|
||||
"authorUrl": "https://myarchivist.ai",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
151
.obsidian/plugins/archivist-importer/styles.css
vendored
Normal file
151
.obsidian/plugins/archivist-importer/styles.css
vendored
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
.archivist-section {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.archivist-campaign-controls {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.archivist-campaign-select {
|
||||
flex: 1;
|
||||
padding-left: 0.5rem;
|
||||
background: var(--background-primary);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.archivist-no-campaigns {
|
||||
flex: 1;
|
||||
padding: 0.5rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.archivist-button-group {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.archivist-create-btn {
|
||||
padding: 0.5rem 1rem;
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.archivist-create-btn:hover:not(:disabled) {
|
||||
background: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
.archivist-btn-loading {
|
||||
opacity: 0.7;
|
||||
cursor: wait;
|
||||
}
|
||||
|
||||
.archivist-refresh-btn {
|
||||
padding: 0.5rem;
|
||||
width: 2.5rem;
|
||||
background: var(--background-modifier-form-field);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 1.2rem;
|
||||
line-height: 1;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.archivist-refresh-btn:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.archivist-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.archivist-table th,
|
||||
.archivist-table td {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
padding: 4px 6px;
|
||||
}
|
||||
|
||||
.archivist-table th {
|
||||
background: var(--background-modifier-form-field);
|
||||
}
|
||||
|
||||
.archivist-table th input[type="checkbox"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.archivist-table td input[type="checkbox"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.archivist-import-btn {
|
||||
padding: 0.75rem 1.5rem;
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.archivist-import-btn:hover:not(:disabled) {
|
||||
background: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
.archivist-import-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.archivist-progress-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.archivist-progress-text {
|
||||
font-weight: 500;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.archivist-progress-bar {
|
||||
width: 100%;
|
||||
height: 24px;
|
||||
background: var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.archivist-progress-fill {
|
||||
height: 100%;
|
||||
background: var(--interactive-accent);
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.archivist-status-cell {
|
||||
white-space: nowrap;
|
||||
font-size: 0.85em;
|
||||
}
|
||||
|
||||
.archivist-status-done {
|
||||
color: var(--color-green);
|
||||
}
|
||||
|
||||
.archivist-status-error {
|
||||
color: var(--color-red);
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
.archivist-status-uploading {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
124
.obsidian/plugins/obsidian-text-format/data.json
vendored
Normal file
124
.obsidian/plugins/obsidian-text-format/data.json
vendored
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
{
|
||||
"manifest": {
|
||||
"version": "3.1.0"
|
||||
},
|
||||
"MergeParagraph_Newlines": true,
|
||||
"MergeParagraph_Spaces": true,
|
||||
"LowercaseFirst": true,
|
||||
"RemoveBlanksWhenChinese": false,
|
||||
"ZoteroNoteRegExp": "“(?<text>.*)” \\((?<item>.*?)\\) \\(\\[pdf\\]\\((?<pdf_url>.*?)\\)\\)",
|
||||
"ZoteroNoteTemplate": "{text} [🔖]({pdf_url})",
|
||||
"BulletPoints": "•–§",
|
||||
"WrapperList": [
|
||||
{
|
||||
"name": "underline",
|
||||
"prefix": "<u>",
|
||||
"suffix": "</u>",
|
||||
"id": "underline"
|
||||
}
|
||||
],
|
||||
"RequestList": [],
|
||||
"customReplaceList": [
|
||||
{
|
||||
"id": "remove-trailing-spaces",
|
||||
"name": "Remove trailing spaces",
|
||||
"data": [
|
||||
{
|
||||
"search": "(\\s*)(?=\\n)|(\\s*)$",
|
||||
"replace": ""
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "remove-blank-line",
|
||||
"name": "Remove blank line(s)",
|
||||
"data": [
|
||||
{
|
||||
"search": "\\n\\s*\\n",
|
||||
"replace": "\\n"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "add-line-break",
|
||||
"name": "Add extra line break between paragraphs",
|
||||
"data": [
|
||||
{
|
||||
"search": "\\n",
|
||||
"replace": "\\n\\n"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "split-lines-by-blank",
|
||||
"name": "Split line(s) by blanks",
|
||||
"data": [
|
||||
{
|
||||
"search": " ",
|
||||
"replace": "\\n"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"customReplaceBuiltInLog": {
|
||||
"remove-trailing-spaces": {
|
||||
"id": "remove-trailing-spaces",
|
||||
"modified": false,
|
||||
"data": [
|
||||
{
|
||||
"search": "(\\s*)(?=\\n)|(\\s*)$",
|
||||
"replace": ""
|
||||
}
|
||||
]
|
||||
},
|
||||
"remove-blank-line": {
|
||||
"id": "remove-blank-line",
|
||||
"modified": false,
|
||||
"data": [
|
||||
{
|
||||
"search": "\\n\\s*\\n",
|
||||
"replace": "\\n"
|
||||
}
|
||||
]
|
||||
},
|
||||
"add-line-break": {
|
||||
"id": "add-line-break",
|
||||
"modified": false,
|
||||
"data": [
|
||||
{
|
||||
"search": "\\n",
|
||||
"replace": "\\n\\n"
|
||||
}
|
||||
]
|
||||
},
|
||||
"split-lines-by-blank": {
|
||||
"id": "split-lines-by-blank",
|
||||
"modified": false,
|
||||
"data": [
|
||||
{
|
||||
"search": " ",
|
||||
"replace": "\\n"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"ToggleSequence": "titleCase\nlowerCase\nupperCase",
|
||||
"RemoveWikiURL2": false,
|
||||
"WikiLinkFormat": {
|
||||
"headingOnly": "{title} (> {heading})",
|
||||
"aliasOnly": "{alias} ({title})",
|
||||
"both": "{alias} ({title} > {heading})"
|
||||
},
|
||||
"UrlLinkFormat": "{text}",
|
||||
"ProperNoun": "",
|
||||
"OrderedListOtherSeparator": "",
|
||||
"Wikilink2mdRelativePath": "relative-obsidian",
|
||||
"calloutType": "NOTE",
|
||||
"debugMode": false,
|
||||
"headingLevelMin": 0,
|
||||
"calloutTypeDecider": "previous-content",
|
||||
"formatOnSaveSettings": {
|
||||
"enabled": false,
|
||||
"commandsString": ""
|
||||
}
|
||||
}
|
||||
10895
.obsidian/plugins/obsidian-text-format/main.js
vendored
Normal file
10895
.obsidian/plugins/obsidian-text-format/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
15
.obsidian/plugins/obsidian-text-format/manifest.json
vendored
Normal file
15
.obsidian/plugins/obsidian-text-format/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"id": "obsidian-text-format",
|
||||
"name": "Text Format",
|
||||
"version": "3.1.0",
|
||||
"minAppVersion": "0.9.7",
|
||||
"description": "Format text such as lowercase/uppercase/capitalize/titlecase, converting order/bullet list, removing redundant spaces/newline characters.",
|
||||
"author": "Benature",
|
||||
"authorUrl": "https://github.com/Benature",
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://www.buymeacoffee.com/benature",
|
||||
"爱发电": "https://afdian.net/a/Benature-K",
|
||||
"微信/支付宝": "https://s2.loli.net/2024/01/30/jQ9fTSyBxvXRoOM.png"
|
||||
},
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
58
.obsidian/plugins/obsidian-text-format/styles.css
vendored
Normal file
58
.obsidian/plugins/obsidian-text-format/styles.css
vendored
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
.plugin-text-format H3,
|
||||
.plugin-text-format H4 {
|
||||
margin-bottom: 0px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
.plugin-text-format H4{
|
||||
opacity: 0.7;
|
||||
}
|
||||
.plugin-text-format .heading-description {
|
||||
padding-top: 0px;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.plugin-text-format .header-div:has(H3) + .tf-collapsible-content {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.plugin-text-format .header-div:has(H4) + .tf-collapsible-content {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.plugin-text-format .setting-item > .setting-item-control > input {
|
||||
min-width: 145px;
|
||||
}
|
||||
|
||||
.plugin-text-format .setting-item.custom-replace input,
|
||||
.plugin-text-format .setting-item.wrapper input {
|
||||
width: 33%;
|
||||
}
|
||||
.plugin-text-format .setting-item.api-request input:first-child {
|
||||
width: 30%;
|
||||
}
|
||||
.plugin-text-format .setting-item.api-request input {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.tf-collapsible-content.is-active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tf-collapsible-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.plugin-text-format .header-div:hover {
|
||||
background-color: var(--interactive-hover, #363636);
|
||||
border-radius: var(--button-radius, 5px);
|
||||
}
|
||||
|
||||
.tf-collapsible-header {
|
||||
padding-bottom: 8px;
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
.tf-collapsible-icon {
|
||||
position: relative;
|
||||
top: 4px;
|
||||
left: 16px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue