이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
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개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
쓰기
미리보기
불러오는 중...
취소
저장