This docs on this page refers to a PREVIOUS VERSION. For the latest stable release, go to https://docs.bokeh.org/

Archived docs for versions <= 1.0.4 have had to be modified from their original published configuration, and may be missing some features (e.g. source listing)

All users are encourage to update to version 1.1 or later, as soon as they are able.

bokeh.models.widgets.markups — Bokeh 0.12.4 documentation

Source code for bokeh.models.widgets.markups

""" Various kinds of markup (static content) widgets.

"""
from __future__ import absolute_import

from ...core.properties import abstract
from ...core.properties import String, Bool
from .widget import Widget


@abstract
[docs]class Markup(Widget): """ Base class for HTML markup widget models. """ text = String(default="", help=""" The contents of the widget. """)
[docs]class Paragraph(Markup): """ A block (paragraph) of text. """
[docs]class Div(Markup): """ A block (div) of text. """ render_as_text = Bool(False, help=""" Should the text be rendered as raw text (False, default), or should the text be interprited as an HTML string (True) """)
[docs]class PreText(Paragraph): """ A block (paragraph) of pre-formatted text. """