quill.fields ============ .. py:module:: quill.fields Classes ------- .. autoapisummary:: quill.fields.QuillField Module Contents --------------- .. py:class:: QuillField(*, tags: collections.abc.Sequence[str] | None = None, **kwargs: Any) Bases: :py:obj:`wtforms.fields.TextAreaField` A textfield using the quill editor and with integrated sanitation. Allows to specifiy which tags to use in the editor and for sanitation. Available tags are: strong, em, ol and ul (p and br tags are always possible). .. py:attribute:: data :type: markupsafe.Markup .. py:attribute:: widget .. py:attribute:: cleaner .. py:method:: pre_validate(form: wtforms.form.BaseForm) -> None Override if you need field-level validation. Runs before any other validators. :param form: The form the field belongs to.