Customizing Dashboards
Learn how to personalize ProcessMind dashboards by adding, resizing, and aligning elements for clear, impactful data visualization.
Use this guide to format content in your Text Chart. ProcessMind supports CommonMark basics and popular GitHub-Flavored Markdown (GFM) extensions, including tables, task lists, and strikethrough.
Use # to ###### at the start of a line:
# H1
## H2
### H3
#### H4
##### H5
###### H6
Separate paragraphs with a blank line.
Single line break (soft break): end the line with two spaces or use <br>.
First line with a soft break··
continues on the next line.
New paragraph after a blank line.
*italic* or _italic_
**bold** or __bold__
***bold italic***
~~strikethrough~~ <!-- GFM -->
Bulleted: -, +, or *. Numbered: 1. 2. etc.
- Item A
- Item B
- Nested item B1
- Nested item B2
1. Step one
2. Step two
1. Sub-step
2. Sub-step
Tip: Keep a consistent indent (2–4 spaces) for nested items.
Inline and reference-style:
Inline: [ProcessMind](https://processmind.com)
With title: [Site](https://example.com "Optional title")
Reference: [Docs][docs-link]
[docs-link]: https://example.com/docs
Alt text is important for accessibility.

Reference-style images:
![Logo][logo]
[logo]: https://example.com/logo.png
Use > at the start of a line. Nest with multiple >.
> A single-line quote.
>
> Multi-paragraph quote:
>
> > Nested quote level 2.
Inline code uses triple backticks ```code. [your code] ```
Fenced blocks use triple backticks. Add a language for syntax highlighting.
Here’s `inline code`.
If your content itself contains triple backticks, fence with four backticks.
Three or more of ---, ***, or ___ on a line by themselves:
---
Use pipes | and header separators ---. Colons (:) set alignment.
| Column | Type | Notes |
|:--------------|:-------:| :------------------|
| Name | String | Left-aligned |
| Score | Number | Left-aligned |
| Description | String | Left-aligned |
| Column | Type | Notes |
|---|---|---|
| Name | String | Left-aligned |
| Score | Number | Left-aligned |
| Description | String | Left-aligned |
A blank line before a table helps some parsers render correctly.
Use - [ ] and - [x].
- [x] Design schema
- [ ] Implement API
- [ ] Write tests
Prefix with a backslash \ to render literal characters.
\*Not italic\*, show the asterisks literally.
Use a backslash for \#, \[, \], \(, \), \_, \*, \`, \|, \>
Keep content cleaner by collecting references at the bottom.
Read the [Guide][g].
See the ![Badge][b].
[g]: https://example.com/guide
[b]: https://example.com/badge.svg
Bare URLs often auto-link. Angle brackets force it.
https://example.com
<mailto:hello@example.com>
Most renderers allow safe inline HTML when Markdown is not enough.
<strong>Bold</strong> and <em>italic</em> with HTML.
<br>
<span style="font-variant:small-caps">Small caps</span>
Note: Not all HTML tags are supported for security and compatibility reasons.
<br>.Copy and adapt:
### Title of TextChart
Short intro paragraph that explains the context.
Value of the metric ${metric} is measured.

Visit us at: https://processmind.com
#### Key Points
- Point A
- Point B
- Point C