Forms
HomeIntegrityControlSolutionsManagement Center
2.0.0 Forms
2.0.0 Forms
  • The service
    • Overview
      • Forms and IAM
      • Products in the Control suite
    • About this release
      • Release notes
      • Breaking changes
    • Key components
      • Flow
        • Authenication & authorisation
      • Step
        • Layout
      • Control
        • Basic controls
          • Input
            • Properties
          • Markdown
            • Properties
          • ValuePicker
            • Properties
        • Advanced controls
          • Selector
            • Properties
          • ActiveDirectoryUserEditGroupMember
            • Properties
          • ActiveDirectoryGroupEditGroupMember
            • Properties
          • ActiveDirectorySingleSelect
            • Properties
          • Attestor
            • Properties
          • EntraGroupSelect
            • Properties
          • EntraGroupEditGroupMember
            • Properties
          • EntraUserSelect
            • Properties
          • EntraUserEditGroupMember
            • Properties
          • TextArea
            • Properties
    • Installation
      • Container
      • Linux
      • Windows
  • Modules
    • Forms
      • Properties
    • Pipes
      • Properties
    • Other modules
  • ATTESTATION
    • Setup
  • User interface (UI)
    • Overview
Powered by GitBook
On this page
  • Configuration
  • Link to basic syntax supported using Markdown
Export as PDF
  1. The service
  2. Key components
  3. Control
  4. Basic controls
  5. Markdown

Properties

Markdown is a lightweight markup language that you can use to add formatting elements to a step.

PreviousMarkdownNextValuePicker

Last updated 5 months ago

Control type: Markdown

Configuration

Name
Description
Default
Mandatory

id

Unique ID within the flow

N/A

data

Text to display

N/A

This from a step where two lines of text, one heading and one paragraph with a line break between, using one markdown control.

{
    "id": "<enter_unique_id_for_this_control>",
    "type": "Markdown",
    "data": "# Create an Active Directory user  \nEnter information about the user you want to create."
}

This an example where three different markdowns are used in the same step. Note that each markdown need a unique id.

{
    "id": "<enter_unique_id_for_this_control_1>",
    "type": "Markdown",
    "data": "# Create an Active Directory user."
},
{
    "id": "<enter_unique_id_for_this_control_2>",
    "type": "Markdown",
    "data": "Enter information about the user you want to create."
},
{
    "id": "<enter_unique_id_for_this_control_3>",
    "type": "Markdown",
    "data": "## How would you like to proceed?"
}

This an example with one markdown using lang-file to add data from a previous step. It combines string and variable data. For example. "You have selected Donald Duck." where Donald Duck is data from a previous step.

The top example is from a step. The below example is from a language file., en.json.

{
    "id": "top_text_label",
    "type": "Markdown",
    "data": {
        "key": "edit_ms_entra_id_user_step2",
        "variables": {
            "displayName": "{{{flow.displayName}}}"
        }
    }
}
"edit_ms_entra_id_user_step2": "You have selected {{displayName}}",

Link to basic syntax supported using Markdown

Click following link for a number of examples on how to use markdown in a step.

https://www.markdownguide.org/cheat-sheet/