diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-09 19:56:17 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-09 19:56:17 -0300 |
commit | c3476d0fcc37f846b055f46d658afc76a99b41d3 (patch) | |
tree | 1b18be930d43eb2379da41ac9e09c4caf87d6953 /themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md | |
parent | 14eab203b90f21fc054aa929ae49121aa9c532fd (diff) |
Cleaned up the repo
Diffstat (limited to 'themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md')
-rw-r--r-- | themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md b/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md deleted file mode 100644 index cdef287..0000000 --- a/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: 'Hugo Whisper' -date: 2019-02-11T19:27:37+10:00 -weight: 6 ---- - -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'; - } -} -``` |