On This Page
This is a component for displaying some markdown.
- Fluent
- Declarative
Markdown.builder()
.markdown("""
## Rich Text Formatting
You can create **bold text**, *italicized text*, and \\`inline code\\` with simple Markdown syntax.
You can also ~~strike through~~ text when needed.
## Lists
### Ordered List:
1. First item
2. Second item
3. Third item with **bold text**
### Unordered List:
- Fruits
- Apples 🍎
- Bananas 🍌
- Oranges 🍊
- Vegetables
- Carrots
- Broccoli
## Links & Quotes
> Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.
[Visit Mateu website](https://mateu.io) | [Learn more about Markdown](https://www.markdownguide.org/)
""")
.build()
TBD.
Available properties
This is the list of available properties for an input field:
| Property | Description | Notes |
|---|---|---|
| id | id for this component | |
| cssClasses | list of css classes | content of the css attribute |
| style | inline style attributes | content of the style attribute |
| markdown | the markdown | content of the style attribute |