Text elements
Jeamlit apps usually start with a call to Jt.title
to set the
app's title.
Pure text is entered with Jt.text
, and Markdown with
Jt.markdown
.
Headings and body text

Markdown
Display string formatted as Markdown.
Jt.markdown("Hello **world**!").use();

Title
Display text in title formatting.
Jt.title("The app title").use();
Formatted text

Code block
Display a code block with optional syntax highlighting.
Jt.code("int a = 1234;").use();

Preformatted text
Write fixed-width and preformatted text.
Jt.text("Hello world").use();

Divider
Display a horizontal rule.
Jt.divider().use();
Utilities
Render HTML
Render an HTML strings to your app.
Jt.html("<p>Foo bar.</p>").use();
Still have questions?
Go to our discussions forum for helpful information and advice from Jeamlit experts.