feat: Add WeChat posting skill and update marketplace.json

This commit is contained in:
Jim Liu 宝玉
2026-01-14 01:02:16 -06:00
parent 7a2f475417
commit 73a5f60ad3
29 changed files with 5659 additions and 1 deletions
@@ -0,0 +1,26 @@
/**
* MD 基础主题样式
* 包含所有元素的基础样式和 CSS 变量定义
*/
/* ==================== 容器样式 ==================== */
section,
container {
font-family: var(--md-font-family);
font-size: var(--md-font-size);
line-height: 1.75;
text-align: left;
}
/* 确保 #output 容器应用基础样式 */
#output {
font-family: var(--md-font-family);
font-size: var(--md-font-size);
line-height: 1.75;
text-align: left;
}
/* 去除第一个元素的 margin-top */
#output section > :first-child {
margin-top: 0 !important;
}