Files
skills/doc-to-tables/config/settings.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

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"]
}
}