mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
update terminal gif
This commit is contained in:
parent
42e5371fb9
commit
ad3a48ccc9
10 changed files with 92 additions and 75 deletions
33
exampleSite/content/docs/example/index.md
Normal file
33
exampleSite/content/docs/example/index.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
title: 'Hugo Whisper'
|
||||
date: 2019-02-11T19:27:37+10:00
|
||||
weight: 7
|
||||
---
|
||||
|
||||
Whisper is a minimal documentation theme built for Hugo. The design and functionality is intentionally minimal.
|
||||
|
||||
## 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';
|
||||
}
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue