first commit

This commit is contained in:
CrazyJasonwell
2026-07-23 20:36:13 +08:00
commit 513b68be8c
7915 changed files with 2642530 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"deleteFileAfterConversion": false,
"importComments": false,
"embedImageData": false,
"ignoreAttachments": false,
"fallbackAttachmentName": "Attachment",
"attachmentsFolder": "subfolder",
"customAttachmentsFolder": "assets",
"useImageAltAsFilename": false
}
+28742
View File
File diff suppressed because one or more lines are too long
+10
View File
@@ -0,0 +1,10 @@
{
"id": "docxer",
"name": "Docxer",
"version": "2.3.1",
"minAppVersion": "1.5.0",
"description": "Import Word files easily. Adds a preview mode for .docx files and the ability to convert them to markdown (.md) files.",
"author": "Developer-Mike",
"authorUrl": "https://github.com/Developer-Mike",
"isDesktopOnly": false
}
+40
View File
@@ -0,0 +1,40 @@
/* src/styles.scss */
.kofi-button {
z-index: 999;
position: absolute;
bottom: var(--size-4-5);
right: var(--size-4-5);
height: 30px;
}
.kofi-button img {
height: 100%;
}
.docxer-settings-heading {
border-bottom: 1px solid var(--color-accent);
}
.docxer-settings-heading:not(:first-child) {
margin-top: var(--size-4-10) !important;
}
#docxer-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
font-size: 1rem;
background-color: var(--background-secondary);
}
.docxer-embed {
max-height: 800px;
overflow: auto;
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: var(--radius-s);
}
.docx-wrapper {
padding: 0 !important;
background-color: var(--background-primary) !important;
transform-origin: center top;
}
.docx-wrapper article {
user-select: text;
}