editor_documentation.py 313 B

12345678910111213
  1. from nicegui import ui
  2. from . import doc
  3. @doc.demo(ui.editor)
  4. def main_demo() -> 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```')
  8. doc.reference(ui.editor)