initiale Übernahme

This commit is contained in:
2026-06-03 13:56:26 +02:00
parent c281c28563
commit 262fc39737
805 changed files with 660083 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "markdown-table-editor",
"name": "Markdown Table Editor",
"version": "0.3.1",
"minAppVersion": "0.12.0",
"description": "An Obsidian plugin to provide an editor for Markdown tables. It can open CSV, Microsoft Excel/Google Sheets data as Markdown tables from Obsidian Markdown editor.",
"author": "Ganessh Kumar R P <rpganesshkumar@gmail.com>",
"authorUrl": "https://ganesshkumar.com",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,65 @@
/* Disabling the color as it makes the text non-readable in dark theme */
/* .mte > button {
background-color: lightgray;
} */
.button-container.mte {
margin: 10pt 0;
}
.button-container.mte > input {
max-width: 100pt;
margin: 5pt 10pt;
}
.grid.mte {
display: grid;
width: fit-content;
margin-top: 5px;
border-right: 1px solid;
border-top: 1px solid;
}
.grid.mte > .cell-container.mte > .cell.mte {
padding: 8px 4px;
}
.grid.mte > .cell-container.mte {
display: flex;
border-left: 1px solid;
border-bottom: 1px solid;
}
/* Disabling the color as it makes the text non-readable in dark theme */
/*
.grid.mte > .cell-container.mte.header {
background-color: lightgray;
} */
.grid.mte > .cell-container.mte > .cell.mte {
min-width: 100pt;
max-width: 250pt;
padding-left: 10pt;
padding-right: 20pt;
width: 100%;
}
.relative.mte {
position: relative;
}
.mte > .absolute {
cursor: pointer;
position: absolute;
right: 0;
top: 25%;
}
.mte > .display-block {
display: block;
}
.mte > .display-none {
display: none;
}