Challenge - 5 Problems
Markdown Master in Postman
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
How does Postman render Markdown in descriptions?
In Postman, which of the following Markdown elements will correctly render as bold text in a request description?
Attempts:
2 left
💡 Hint
Think about the Markdown syntax for bold text.
✗ Incorrect
In Markdown, double asterisks or double underscores make text bold. Postman supports this syntax in descriptions.
❓ Predict Output
intermediate2:00remaining
What is the rendered output of this Markdown in Postman description?
Given this Markdown snippet in a Postman request description:
What will the rendered output look like?
# Header 1 Some *italic* text and a [link](https://example.com)
What will the rendered output look like?
Attempts:
2 left
💡 Hint
Markdown headers start with # and links use [text](url) syntax.
✗ Incorrect
Markdown renders # Header 1 as a large header, *italic* as italic text, and [link](url) as a clickable hyperlink.
❓ assertion
advanced2:30remaining
Which assertion correctly checks for presence of bold text in Postman test script?
You want to write a Postman test script to verify that the response description contains bold text formatted with Markdown. Which assertion is correct?
Postman
pm.test('Description contains bold text', () => { const desc = pm.response.json().description; // Which assertion below is correct? });
Attempts:
2 left
💡 Hint
Markdown bold uses double asterisks, so a regex can detect it.
✗ Incorrect
Since the description is raw Markdown, checking for ** with a regex is best. HTML tags like <strong> won't appear in raw Markdown.
🔧 Debug
advanced2:30remaining
Why does this Markdown not render as a list in Postman description?
This Markdown is used in a Postman request description:
Why does only 'Item 1' render as a list item?
- Item 1 -Item 2 - Item 3
Why does only 'Item 1' render as a list item?
Attempts:
2 left
💡 Hint
Markdown requires a space after the dash for list items.
✗ Incorrect
In Markdown, list items must have a space after the dash. '-Item 2' is treated as normal text, so only 'Item 1' is a list item.
❓ framework
expert3:00remaining
How to automate validation of Markdown formatting in Postman descriptions?
You want to create an automated test framework that validates Markdown formatting in Postman request descriptions to ensure consistent style. Which approach is best?
Attempts:
2 left
💡 Hint
Think about scalable, automated validation outside Postman UI.
✗ Incorrect
Exporting the collection JSON and running a Markdown linter in CI is scalable and automated. Postman test scripts can't parse descriptions before execution, and UI tests are brittle.