LogoLogo
About
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
  • Text
    • Overview
  • Boolean Checks
    • Check Text Contents
    • Check Text End
    • Check Text Start
    • Check Regex Match
  • Conversions
    • Convert Character to Number
    • Convert Number to Character
    • Convert Text Date to ISO Format
    • Convert Text to HTML
    • Convert Text to Number
    • Convert Text to Lowercase
    • Convert Text to Titlecase
    • Convert Text to Uppercase
  • Combine Texts
  • Extract Elements from Text
  • Extract Markdown Headings
  • Get Text Length
  • Removal
    • Remove Text Using Regex
    • Remove Text Using Substrings
  • Replacement
  • Splitting
Powered by GitBook
On this page
  • Overview
  • Syntax
  • Data
  • Parameters
  • Examples

Was this helpful?

Export as PDF

Extract Markdown Headings

Extract headings from a given markdown text.

Overview

This operation identifies and extracts headings from markdown text. Markdown headings are identified by the # symbol followed by a space and then the heading text.

Syntax

the markdown text is "{input}"
extract headings from the markdown text

Data

The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.

Data Name
Can Be Renamed

the markdown text

No

headings

No

Parameters

Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.

Parameters
Description
Examples
Required

input

The markdown text containing headers to be extracted.

Title

This is a subheader.

Yes

Examples

the markdown text is "# Title \n This is a sample subtitle."
extract headings from the markdown text
# Title

Tip: Use the Markdown Widget

To add multi-line markdown content, type "/" and select markdown. This opens a markdown editor where you can easily type and format your text.

Last updated 7 days ago

Was this helpful?