소스 검색

Interlinks: patch to fix #920 (#925)

* fixes #920

* Interlinks: improves HTML img tag handling. Fixes #886 (again)
aquinzi 7 년 전
부모
커밋
0c74bd5e35
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      interlinks/interlinks.py

+ 1 - 1
interlinks/interlinks.py

@@ -53,7 +53,7 @@ def parse_links(instance):
 				if name in interlinks:
 					hi = url.replace(name+">",interlinks[name])
 					img['src'] = hi
-				content = content.replace(old_tag, str(link))
+				content = content.replace(old_tag.replace(">", ">").replace("/>",">"), str(img))
 
 		instance._content = content