We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb2deb commit 44c2ef5Copy full SHA for 44c2ef5
assets/app.css
@@ -82,6 +82,8 @@ body .container .sidebar ul a {
82
.method .prefix {
83
font-size: 20px;
84
color: #949494;
85
+ line-height: 20px;
86
+ text-decoration: none;
87
}
88
89
.class_name {
templates/html/class.html
@@ -10,8 +10,8 @@ <h2>Instance Methods</h2>
10
<hr />
11
{{ range .class.InstanceMethods }}
12
<h4 class="method">
13
- <span class="prefix">#</span>
14
- <span class="title">{{.FnName}}</span>
+ <a class="prefix" href="#{{.FnName}}">#</a>
+ <span class="title" id="{{.FnName}}">{{.FnName}}</span>
15
</h4>
16
<div class="method-comment">{{.Comment}}</div>
17
<p class="source">
0 commit comments