Complete the code to add a bold title in Postman description using Markdown.
# [1] Title
In Markdown, a single # followed by a space creates a heading, which is rendered bold. Use plain text 'Bold' for the title to create a simple bold heading titled 'Bold Title'. Other options add unnecessary inline formatting.
Complete the code to add italic text in Postman description using Markdown.
This is [1] text.In Markdown, wrapping text with single asterisks (*) makes it italic. Double asterisks (**) make it bold. Backticks (`) create inline code, and tildes (~~) create strikethrough.
Fix the error in the Markdown code to create a link in Postman description.
[Postman]([1])Markdown links require a full URL with the protocol (https://). Without it, the link may not work correctly in Postman.
Fill both blanks to create a numbered list with two items in Postman description using Markdown.
1. [1] 2. [2]
Numbered lists in Markdown use numbers followed by a dot and space. Each line is a list item. Here, 'First item' and 'Second item' are the correct list entries.
Fill both blanks to create a code block with language specified in Postman description using Markdown.
```[1] [2] ```
Markdown code blocks start with triple backticks followed by the language name (like 'python'). The code goes on the next line(s). The block ends with triple backticks. No extra text after closing backticks is needed.