04db423416
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
26 lines
645 B
JSON
26 lines
645 B
JSON
{
|
|
"skill_name": "doc-to-tables",
|
|
"version": "1.0.0",
|
|
"description": "Convert Word documents to structured Markdown and HTML tables",
|
|
"author": "小小莫",
|
|
"category": "document-processing",
|
|
"tags": ["word", "markdown", "html", "tables", "data-extraction"],
|
|
|
|
"default_settings": {
|
|
"three_column_widths": "20,60,20",
|
|
"two_column_widths": "70,30",
|
|
"process_teacher_awards": true,
|
|
"generate_no_headers_html": true,
|
|
"output_format": "both"
|
|
},
|
|
|
|
"dependencies": {
|
|
"required": ["pandoc"],
|
|
"optional": ["fpdf2"]
|
|
},
|
|
|
|
"file_extensions": {
|
|
"input": [".docx"],
|
|
"output": [".md", ".html"]
|
|
}
|
|
} |