Skip to content

Markdown Support in Palzin Track

Getting Started

Palzin Track offers Markdown support to enhance the way you format and display content within your events. To enable Markdown parsing for your event content, follow these steps:

  1. When making a request, include the "parser" field and set its value to "markdown". This informs Palzin Track to process your event content as Markdown.

Here's an example of a request payload using Markdown formatting:

json
{
  "project": "...",
  "channel": "...",
  "event": "...",
  "description": "**username**: user",
  "parser": "markdown"
}
{
  "project": "...",
  "channel": "...",
  "event": "...",
  "description": "**username**: user",
  "parser": "markdown"
}

Supported Markdown Tags

Palzin Track's Markdown support includes various Markdown tags that you can use to format your event content:

StyleMarkdownOutput
Bold**bold**bold
Italic*italic*italic
Link[link](https://palzintrack.com)link
Inline Code`code`code
Code Block```code
code
```
code<br>code<br>

This table presents various Markdown formatting styles, the corresponding Markdown syntax, and the resulting output.