Files
skills/doc-to-tables/skill.json
T
hmo 04db423416 Initial commit: skills library
- 70 skills with code and documentation
- Add .gitignore (ignore __pycache__, output/, temp/, venv/)
- Clean up test intermediates and caches
2026-04-26 19:27:40 +08:00

23 lines
716 B
JSON

{
"name": "doc-to-tables",
"version": "1.0.0",
"description": "将Word文档转换为结构化Markdown和HTML表格的完整工作流技能",
"category": "document-processing",
"author": "小小莫",
"tags": ["word", "markdown", "html", "tables", "data-extraction", "piano-competitions"],
"entry_point": "scripts.doc_to_tables:main",
"dependencies": {
"required": ["pandoc"],
"optional": ["fpdf2"]
},
"file_formats": {
"input": ["docx"],
"output": ["md", "html"]
},
"usage_examples": [
"python doc_to_tables.py input.docx output",
"python doc_to_tables.py input.docx output --three-col-widths 25,50,25"
],
"created_at": "2026-03-01",
"updated_at": "2026-03-01"
}