pptx-rs2 0.5.0

Rust 版本的 PowerPoint .pptx 读写库, 对标 python-pptx
Documentation
# 跨平台行尾统一:仓库内所有文本文件统一 LF 行尾
# 符合 project_rules §10 跨平台要求
#
# Windows 用户本地 checkout 也保持 LF(避免 CRLF 导致 cargo fmt --check 失败)
# Git 的 core.autocrlf 配置与本文件冲突时,本文件优先

# 默认:所有文本文件 LF
* text=auto eol=lf

# Rust 源码
*.rs    text eol=lf
*.toml  text eol=lf

# Markdown / 文档
*.md    text eol=lf

# YAML / JSON / 配置
*.yml   text eol=lf
*.yaml  text eol=lf
*.json  text eol=lf

# Shell / 脚本
*.sh    text eol=lf
*.ps1   text eol=crlf
*.bat   text eol=crlf

# 二进制文件:不做行尾转换
*.png   binary
*.jpg   binary
*.jpeg  binary
*.pptx  binary
*.ppt   binary
*.xlsx  binary
*.docx  binary
*.zip   binary
*.bin   binary