Skip to content

Commit

Permalink
feat: Add better jumpline between request details
Browse files Browse the repository at this point in the history
  • Loading branch information
jofaval committed Aug 5, 2022
1 parent a835dd1 commit fd81ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/postman-to-markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'}`"
Expand Down

0 comments on commit fd81ec6

Please sign in to comment.