04db423416
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
23 lines
716 B
JSON
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"
|
|
} |