editor_documentation.py 382 B

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