From ba2d75b4ce76ef6a0d16576bb79cd303149cf3b6 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Mon, 9 Jan 2023 19:19:28 -0300 Subject: Added base hugo-whisper site --- .../exampleSite/content/docs/example/index.md | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md (limited to 'themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md') diff --git a/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md b/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md new file mode 100644 index 0000000..cdef287 --- /dev/null +++ b/themes/hugo-whisper-theme/exampleSite/content/docs/example/index.md @@ -0,0 +1,35 @@ +--- +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. + + + +## 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'; + } +} +``` -- cgit v1.2.3