`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