Skip to content

Instantly share code, notes, and snippets.

@inclement
Created August 28, 2013 12:07
Show Gist options
  • Save inclement/6365275 to your computer and use it in GitHub Desktop.
Save inclement/6365275 to your computer and use it in GitHub Desktop.
label markup test
from kivy.app import App
from kivy.uix.label import Label
class ExApp(App):
def build(self):
return Label(text='[b]yay[/b]\n[i]moo[/i]\n', markup=True)
if __name__ == "__main__":
ExApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment