`xml.etree.ElementTree` — doesn't allow specifying fine-grained formatting controls
未关闭
还没有人认领这个 Issue。
topic-XML
type-feature
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 36k
- PR 合并指标
- PR 指标待抓取
描述
(Note: I already have a PR and this is a tracking issue.)
Enhancement
XML is maddening from a Git perspective, as if multiple tools will edit it, you'll get lots of lines in the diff that aren't needed.
For example:
diff --git a/sources/designspace/Besley.designspace b/sources/designspace/Besley.designspace
index d247944..eecb985 100644
--- a/sources/designspace/Besley.designspace
+++ b/sources/designspace/Besley.designspace
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version='1.0' encoding='UTF-8'?>
And:
diff --git a/sources/designspace/Besley.designspace b/sources/designspace/Besley.designspace
index d247944..9d570dd 100644
--- a/sources/designspace/Besley.designspace
+++ b/sources/designspace/Besley.designspace
@@ -10,15 +10,15 @@
<map input="800" output="766"/>
<map input="900" output="900"/>
</axis>
- <axis tag="wdth" name="Width" minimum="75" maximum="100" default="100"></axis>
+ <axis tag="wdth" name="Width" minimum="75" maximum="100" default="100" />
</axes>
<sources>
<source filename="../ufo/Besley-Book.ufo" name="Besley Regular" familyname="Besley" stylename="Regular">
<location>
- <dimension name="Weight" xvalue="400"/>
- <dimension name="Width" xvalue="100"/>
+ <dimension name="Weight" xvalue="400" />
+ <dimension name="Width" xvalue="100" />
</location>
</source>
There are likely other issues, but I only needed to solve these two.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先审查 issue 中提到的现有 pull request,以及它所修改的 xml.etree.ElementTree 格式化行为。当调用方能够独立控制 XML 声明的引号和空元素格式,并且涵盖所示的两个示例时,工作即告完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend
- Issue 类型
- 功能
- 难度
- 5/5
- 预计耗时
- 一周以上
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 15/100