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

index.md « example « docs « content « exampleSite - github.com/JugglerX/hugo-whisper-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b95de03957ce90ba7032c73d6b5ceb251d52a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
title: 'Hugo Whisper'
date: 2019-02-11T19:27:37+10:00
weight: 7
---

Whisper is a minimal documentation theme built for Hugo. The design & functionality is intentionally minimal.

<!--more-->

## Quickstart

Copy or git clone this theme into the sites themes folder `mynewsite/themes`

```
hugo new site whisper
git clone https://github.com/jugglerx/hugo-whisper-theme.git
```

### Code Highlighting

Whisper uses Hugo's in-built code highlighting with a github style code highlighting theme. https://gohugo.io/content-management/syntax-highlighting/

You can insert code snippets in any markdown file by using standard code fences syntax ie:

```js
function myFunction() {
  var x = document.getElementById('myDIV');
  if (x.style.display === 'none') {
    x.style.display = 'block';
  } else {
    x.style.display = 'none';
  }
}
```