mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 09:22:42 +03:00
scripts/flatpak: Escape XML characters in convert-release-notes.py (#13801)
Resolves #13791 Release Notes: - N/A
This commit is contained in:
parent
c617d48e16
commit
d3f869acd8
@ -1,18 +1,18 @@
|
||||
import os
|
||||
import re
|
||||
import requests
|
||||
import sys
|
||||
import textwrap
|
||||
import os
|
||||
|
||||
from html import escape
|
||||
|
||||
def clean_line(line: str, in_code_fence: bool) -> str:
|
||||
line = re.sub(r"<", "<", line)
|
||||
line = re.sub(r">", ">", line)
|
||||
line = re.sub(r"\(\[(#\d+)\]\([\w|\d\:|\/|\.|\-|_]*\)\)", lambda match: f"[{match.group(1)}]", line)
|
||||
line = re.sub(r"\[(#\d+)\]\([\w|\d\:|\/|\.|\-|_]*\)", lambda match: f"[{match.group(1)}]", line)
|
||||
if not in_code_fence:
|
||||
line = line.strip()
|
||||
|
||||
return line
|
||||
return escape(line)
|
||||
|
||||
|
||||
def convert_body(body: str) -> str:
|
||||
|
Loading…
Reference in New Issue
Block a user