Kivy의 ReStructuredText rendererer를 시도했습니다.

1929 단어 KivyPython

해본 일


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, 아래쪽은 결과입니다.
렌더링이 완료된 것 같습니다.
이건아마 편리할 거예요.
이상
해봤어.

좋은 웹페이지 즐겨찾기