Skip to content

Commit 53960a0

Browse files
committed
Update registry output
List items are on separate lines to improve diff comparison.
1 parent 5c2d5e6 commit 53960a0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/jsonid/helpers.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
151151
markers=marker_snippet.strip().format(marker_text=marker_text),
152152
)
153153
list_item = list_snippet.strip().format(id=id_, name=name)
154+
list_item = list_item + &#34;\n&#34;
154155
content_arr.append(row)
155156
list_arr.append(list_item)
156157
table = &#34;&#34;&#34;

src/jsonid/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def html():
126126
markers=marker_snippet.strip().format(marker_text=marker_text),
127127
)
128128
list_item = list_snippet.strip().format(id=id_, name=name)
129+
list_item = list_item + "\n"
129130
content_arr.append(row)
130131
list_arr.append(list_item)
131132
table = """

0 commit comments

Comments
 (0)