基于python的两种实现markdown转html格式的源代码(命令行+窗口模式)
时间:2025-2-19 14:02 作者:Anglei 分类: 自动化运维
话不多说,直接上干货!
命令行模式预览
命令行模式源代码
import markdown2
def md_to_html(md_file, html_file):
# 读取Markdown文件内容
with open(md_file, 'r', encoding='utf-8') as file:
markdown_content = file.read()
# 使用markdown2将Markdown转换为HTML
html_content = markdown2.markdown(markdown_content)
# 将HTML内容写入HTML文件
with open(html_file, 'w', encoding='utf-8') as file:
file.write(html_content)
if __name__ == "__main__":
# 从用户那里获取Markdown文件名
md_file = input("请输入Markdown文件名: ")
# 从用户那里获取HTML文件名
html_file = input("请输入HTML文件名: ")
md_to_html(md_file, html_file)
print(f"Converted {md_file} to {html_file} successfully!")
窗口模式预览
窗口模式源代码
import tkinter as tk
from tkinter import filedialog, messagebox
import markdown2
def md_to_html(md_content):
# 使用markdown2将Markdown转换为HTML
return markdown2.markdown(md_content)
def convert_files():
# 打开文件选择对话框让用户选择Markdown文件
md_file_path = filedialog.askopenfilename(filetypes=[("Markdown files", "*.md")])
if not md_file_path:
return
# 打开文件选择对话框让用户选择保存HTML文件的位置和文件名
html_file_path = filedialog.asksaveasfilename(defaultextension=".html", filetypes=[("HTML files", "*.html")])
if not html_file_path:
return
try:
# 读取Markdown文件内容
with open(md_file_path, 'r', encoding='utf-8') as file:
markdown_content = file.read()
# 将Markdown转换为HTML
html_content = md_to_html(markdown_content)
# 将HTML内容写入HTML文件
with open(html_file_path, 'w', encoding='utf-8') as file:
file.write(html_content)
# 显示成功消息
messagebox.showinfo("Success", f"Converted {md_file_path} to {html_file_path} successfully!")
except Exception as e:
# 显示错误消息
messagebox.showerror("Error", f"Failed to convert file: {e}")
# 创建主窗口
root = tk.Tk()
root.title("Markdown to HTML Converter 制作人:Maxada社区知识库")
# 创建一个按钮来触发文件转换
convert_button = tk.Button(root, text="Convert Markdown to HTML", command=convert_files)
convert_button.pack(pady=20)
# 添加声明文字
disclaimer_text = "本软件版权归MAXADA社区知识库所有,敬请访问:https://maxada.cn"
disclaimer_label = tk.Label(root, text=disclaimer_text, anchor='w', justify='left') # anchor='w' 左对齐,justify='left' 保证多行文本左对齐
disclaimer_label.pack(side='bottom', fill='x', pady=10) # side='bottom' 放置在底部,fill='x' 水平填充,pady=10 设置上下填充
# 运行主窗口的事件循环
root.mainloop()

推荐阅读:
![]() 路过(0) |
![]() 雷人(0) |
![]() 握手(1) |
![]() 鲜花(0) |
![]() 鸡蛋(0) |