このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
ben
/
mwparserfromhell
ミラー元
https://github.com/earwig/mwparserfromhell
ウォッチ
1
スター
1
フォーク
0
コード
リリース
24
アクティビティ
ソースを参照
Fix ordering of tag representation
Self-closing wiki syntax tags have incorrectly ordered wiki syntax and padding, fixed the ordering.
tags/v0.4
David Winegar
10年前
親
94a9e32494
コミット
7bbeb6899a
1個のファイルの変更
、
1行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
mwparserfromhell/nodes/tag.py
+ 1
- 1
mwparserfromhell/nodes/tag.py
ファイルの表示
@@ -65,7 +65,7 @@ class Tag(Node):
close = self.closing_wiki_markup if self.closing_wiki_markup else ""
padding = self.padding if self.padding else ""
if self.self_closing:
return self.wiki_markup + attrs +
close +
padding
return self.wiki_markup + attrs + padding
+ close
else:
return self.wiki_markup + attrs + padding + str(self.contents) + close
書き込み
プレビュー
読み込み中…
キャンセル
保存