Kivy의 ReStructuredText rendererer를 시도했습니다.
해본 일
RST를 Kivy로 렌더링할 수 있을 것 같아서 해봤어요.
소스 코드
단지 시험해 보았을 뿐, 매우 간단하게 설치하였다.
main.py
import kivy
from kivy.uix.widget import Widget
from kivy.app import App
class textImput(Widget):
def Text(self):
pass
class editorApp(App):
def build(self):
return textImput()
editorApp().run()
KV는 다음과 같습니다.editor.kv
<textImput>:
BoxLayout:
orientation: 'vertical'
size: 800, 600
TextInput:
id: txt_inpt
size_hint: 1, 5
text: ''
RstDocument:
text: txt_inpt.text
size_hint: 1, 5
show_errors: True
실행 결과
이미지는 Getting Started의 RST를 먼저 붙인 결과입니다.위쪽은 RST, 아래쪽은 결과입니다.
렌더링이 완료된 것 같습니다.
이건아마 편리할 거예요.
이상
해봤어.
Reference
이 문제에 관하여(Kivy의 ReStructuredText rendererer를 시도했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Ds110/items/cd0651b0e78f3ca93ed5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)