editor_documentation.py 246 B

1234567
  1. from nicegui import ui
  2. def main_demo() -> None:
  3. editor = ui.editor(placeholder='Type something here')
  4. ui.markdown().bind_content_from(editor, 'value',
  5. backward=lambda v: f'HTML code:\n```\n{v}\n```')