Implements comprehensive validation before PPTX conversion to catch errors early. Includes element-level validation (colors, fonts, table consistency) and system-level validation (geometry, resources). Supports standalone check command and automatic validation during conversion.
11 lines
231 B
Python
11 lines
231 B
Python
"""
|
|
验证器模块
|
|
|
|
提供 YAML 文件验证功能。
|
|
"""
|
|
|
|
from validators.validator import Validator
|
|
from validators.result import ValidationResult, ValidationIssue
|
|
|
|
__all__ = ['Validator', 'ValidationResult', 'ValidationIssue']
|