You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

searchfile.tmpl 451B

1234567891011121314
  1. <div class="file-body file-code code-view">
  2. <table>
  3. <tbody>
  4. {{range .SearchResult.Lines}}
  5. <tr>
  6. <td class="lines-num">
  7. <a href="{{$.RepoLink}}/src/commit/{{PathEscape $.SearchResult.CommitID}}/{{PathEscapeSegments $.SearchResult.Filename}}#L{{.Num}}"><span>{{.Num}}</span></a>
  8. </td>
  9. <td class="lines-code chroma"><code class="code-inner">{{.FormattedContent}}</code></td>
  10. </tr>
  11. {{end}}
  12. </tbody>
  13. </table>
  14. </div>