Skip to content

UI.MarkdownViewer

Name Mandatory Description Default Type
⬅️ Input The input of the shard, if any String
Output ➡️ The resulting output of the shard String

A markdown viewer.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@wire(ui-wire {
  UI.Window(
    Title: "UI Markdown Viewer"
    Position: @f2(0 0)
    Anchor: Anchor::Center
    Width: 700
    Height: 400
    Contents: {
      UI.TopPanel(
        Contents: {
          "# Title

  ## Sub-title
  **list:**
  - item 1
  - item 2"
          UI.MarkdownViewer
        }
      )
    }
  )
} Looped: true)

{ui-behavior: ui-wire}