style-formatting

Installation
SKILL.md

格式化操作规范

常用格式化代码

var sel = Application.Selection;

// 字体
sel.Font.Name = "微软雅黑";
sel.Font.Size = 12;
sel.Font.Bold = true;
sel.Font.Italic = false;

// 段落
sel.ParagraphFormat.Alignment = 1; // 居中
sel.ParagraphFormat.LineSpacingRule = 0; // wdLineSpaceSingle
sel.ParagraphFormat.FirstLineIndent = 24; // 首行缩进2字符
Installs
2
GitHub Stars
3
First Seen
Jun 29, 2026
style-formatting — claude-office-skills/claude-wps-word-plugin