punctuation_dict = {
",": ",",
"。": ".",
}
translation_table = str.maketrans(punctuation_dict)
def svg_to_html(svg_content, output_filename):
html_content = f"""
SVG Embedded in HTML
"""
with open(output_filename, 'w') as file:
file.write(html_content)
content_mmd_to_html = """
Title
"""
tik_html = """
Document
"""
# print(tik_html)