From fd81ec6e7b84342c86bce5641f7e6a4c6e663072 Mon Sep 17 00:00:00 2001 From: pepe_fabra_valverde Date: Fri, 5 Aug 2022 11:42:47 +0200 Subject: [PATCH] feat: Add better jumpline between request details --- python/postman-to-markdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/postman-to-markdown.py b/python/postman-to-markdown.py index 2912c80..d97e2f6 100644 --- a/python/postman-to-markdown.py +++ b/python/postman-to-markdown.py @@ -206,7 +206,7 @@ def parse_collection_item_to_markdown( f"{recursive_level * '#'} {item['name']}", f"[Back to {parent['name']}](#{get_slugified_name(parent['name'])})", ]), - '\n'.join([ + '\\\n'.join([ f"**HTTP method**: {request_details['method'] if 'method' in request_details else 'none to be kown.'}", f"**Authentication type**: {request_details['auth']['type'] if 'auth' in request_details else 'none to be kown.'}", f"**Url**: `{request_details['url']['raw'] if request_details['url']['raw'] else 'none to be found.'}`"