1 Star 1 Fork 0

憧憬少/nga-bbscode-converter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gui.py 505 Bytes
一键复制 编辑 原始数据 按行查看 历史
ChangingSelf 提交于 2021-07-07 23:00 . 添加gui
import tkinter as tk
from bbscode import converter
import bbscode
root = tk.Tk()
root.title("bbscode转换器")
# 输入框
inputText = tk.Text(root,height=20,width=100)
inputText.pack()
# 转换按钮
def md_to_bbscode():
md_str = inputText.get('1.0',tk.END)
bbscode = converter.md_to_bbscode(md_str)
inputText.delete('1.0', tk.END)
inputText.insert('1.0',bbscode)
convertBtn = tk.Button(root,text="markdown转换为bbscode",command=md_to_bbscode)
convertBtn.pack()
root.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ChangingSelf/nga-bbscode-converter.git
[email protected]:ChangingSelf/nga-bbscode-converter.git
ChangingSelf
nga-bbscode-converter
nga-bbscode-converter
main

搜索帮助