Initial commit: obsidian to gitea

This commit is contained in:
2026-05-07 15:04:41 +08:00
commit a57afa86b4
323 changed files with 42569 additions and 0 deletions

17
.obsidian/snippets/table-wrap-fix.css vendored Normal file
View File

@@ -0,0 +1,17 @@
.markdown-preview-view table {
table-layout: fixed;
width: 100%;
}
.markdown-preview-view th,
.markdown-preview-view td {
white-space: normal !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
}
.markdown-preview-view code {
white-space: pre-wrap !important;
word-break: break-all !important;
}