From 0fe5ec4b124ab3b9457d9051ec816d0c216e316c Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 23 May 2024 17:42:27 +0200 Subject: [PATCH] update readme endpoint list output --- dlt_init_openapi/renderer/default/templates/README.md.j2 | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dlt_init_openapi/renderer/default/templates/README.md.j2 b/dlt_init_openapi/renderer/default/templates/README.md.j2 index 6882796..39bcc3b 100644 --- a/dlt_init_openapi/renderer/default/templates/README.md.j2 +++ b/dlt_init_openapi/renderer/default/templates/README.md.j2 @@ -19,7 +19,9 @@ secrets.toml. ## Available resources {% for endpoint in endpoint_collection.all_endpoints_to_render %} -* {{ endpoint.detected_resource_name }} - _{{endpoint.method}} {{ endpoint.path }}_ - {% if endpoint.render_description %}{{endpoint.render_description}}{% endif %} +* _{{endpoint.method}} {{ endpoint.path }}_ + *resource*: {{ endpoint.detected_resource_name }} + {% if endpoint.render_description %} + *description*: {{endpoint.render_description}} + {% endif %} {% endfor %}