Skip to content

Commit 97da926

Browse files
committed
fix(readme):improved markdown for library overview
And names of free methods, which previously contained '.'. These are now spaces.
1 parent bb75c5b commit 97da926

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/mako/lib/lib.mako

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ It seems there is nothing you can do here ... .
8080
if sn in schemas:
8181
md_resource = link(md_resource, schema_doc_format(schemas[sn]) % unique_type_name(sn))
8282
%>\
83-
* ${md_resource} (${put_and(md_methods)})
83+
* ${md_resource}
84+
* ${put_and(md_methods)}
8485
% endfor ## each resource activity
8586

8687
% if METHODS_RESOURCE in c.rta_map:
@@ -100,7 +101,7 @@ ${method_type} supported by ...
100101
% for m in methods:
101102
<%
102103
_, resource, method = activity_split(m.id)
103-
name_parts = [split_camelcase_s(method)]
104+
name_parts = [' '.join(split_camelcase_s(method).split('.'))]
104105
if resource != METHODS_RESOURCE:
105106
name_parts.append(split_camelcase_s(resource))
106107
%>\

0 commit comments

Comments
 (0)