Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmd.html « shortcodes « layouts - github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccadc07f82bccafc44a98634c0e550d9aad70084 (plain)
1
2
3
4
5
6
7
{{ $trimmed := (trim .Inner "\n") }}
{{ $lines := split $trimmed "\n" }}
<pre class="cmd">
  {{ range $lines }}
  <code>{{ . }}</code>
  {{ end }}
</pre>