Skip to content

Commit 1d06c79

Browse files
committed
inline links and no space between Domain. EventName
1 parent cfc7a34 commit 1d06c79

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

_includes/domain.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 class="heading"><span>{{domain.domain}}</span> Domain</h2>
1919
{% assign types = (domain.types | where_exp: "item", "item.redirect == nil") %}
2020

2121
{% if commands[0] %}
22-
<h3>Methods</h3>
22+
<h3 id="methods">Methods</h3>
2323
<paper-material elevation="1" class="methods">
2424
{% for method in commands %}
2525
{% include method.html method=method domain=domain %}
@@ -28,7 +28,7 @@ <h3>Methods</h3>
2828
{% endif %}
2929

3030
{% if events[0] %}
31-
<h3>Events</h3>
31+
<h3 id="events">Events</h3>
3232
<paper-material elevation="1" class="events">
3333
{% for event in events %}
3434
{% include event.html event=event domain=domain %}
@@ -37,7 +37,7 @@ <h3>Events</h3>
3737
{% endif %}
3838

3939
{% if types[0] %}
40-
<h3>Types</h3>
40+
<h3 id="types">Types</h3>
4141
<paper-material elevation="1" class="types">
4242
{% for type in types %}
4343
{% include type.html type=type %}

_includes/event.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<div class="event">
66
<h4 class="event-name monospace" id="event-{{event.name}}">
77
<span>
8-
<span class="domain-dot">{{domain.domain}}.</span>
9-
{{event.name}}
8+
<span class="domain-dot">{{domain.domain}}.</span>{{event.name}}
109
</span>
1110
<a href="{{permalink}}" class="permalink">#</a>
1211
</h4>

0 commit comments

Comments
 (0)