PixieDust release notes 1.1.5

Here's what's new in Release 1.1.5 (5 January 2018):

Known issues

Bug fixes

Enhancements

from pixiedust.display.app import *
from IPython.display import display_markdown

@PixieApp
class TestMarkdown():
    @route()
    @captureOutput
    def main_screen(self):
            display_markdown("""
# Section Header
## Second *bullet*
1. item1
2. item2
3. item3
            """, raw=True)
TestMarkdown().run()

Return to main topic for: