Initial commit: skills library
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
DOC to Tables Skill - Main entry point
|
||||
"""
|
||||
|
||||
__version__ = "1.0.0"
|
||||
__author__ = "小小莫"
|
||||
__description__ = "Convert Word documents to structured Markdown and HTML tables"
|
||||
|
||||
from .scripts.doc_to_tables import main
|
||||
|
||||
# Export main function for easy import
|
||||
__all__ = ["main"]
|
||||
Reference in New Issue
Block a user