123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- from nicegui import ui
- from . import doc
- @doc.demo(ui.markdown)
- def main_demo() -> None:
- ui.markdown('This is **Markdown**.')
- @doc.demo('Markdown with indentation', '''
- Common indentation is automatically stripped from the beginning of each line.
- So you can indent markdown elements, and they will still be rendered correctly.
- ''')
- def markdown_with_indentation():
- ui.markdown('''
- ### Example
- This line is not indented.
- This block is indented.
- Thus it is rendered as source code.
-
- This is normal text again.
- ''')
- @doc.demo('Markdown with code blocks', '''
- You can use code blocks to show code examples.
- If you specify the language after the opening triple backticks, the code will be syntax highlighted.
- See [the Pygments website](https://pygments.org/languages/) for a list of supported languages.
- ''')
- def markdown_with_code_blocks():
- ui.markdown('''
- ```python
- from nicegui import ui
- ui.label('Hello World!')
- ui.run(dark=True)
- ```
- ''')
- @doc.demo('Markdown tables', '''
- By activating the "tables" extra, you can use Markdown tables.
- See the [markdown2 documentation](https://github.com/trentm/python-markdown2/wiki/Extras#implemented-extras) for a list of available extras.
- ''')
- def markdown_tables():
- ui.markdown('''
- | First name | Last name |
- | ---------- | --------- |
- | Max | Planck |
- | Marie | Curie |
- ''', extras=['tables'])
- @doc.demo('Change Markdown content', '''
- You can change the content of a markdown element by changing its `content` property.
- ''')
- def markdown_tables():
- markdown = ui.markdown('Sample content')
- ui.button('Change Content', on_click=lambda: change_content())
- def change_content():
- markdown.content = 'This is new content'
- doc.reference(ui.markdown)
|