mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-12 22:09:48 +08:00
40363194be
Formats plain text or markdown with frontmatter, titles, summaries, headings, bold, lists, code blocks, and CJK typography fixes.
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import { execSync } from "child_process";
|
|
|
|
export function applyAutocorrect(filePath: string): boolean {
|
|
try {
|
|
execSync(`npx autocorrect-node --fix "${filePath}"`, { stdio: "inherit" });
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|