summaryrefslogtreecommitdiff
path: root/content/docs/example.md
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-09 19:57:39 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-09 19:57:39 -0300
commitbb298a0e8329889513c055a5984a4231980d96a0 (patch)
tree17f1535930aea9ea4e1eb1632cd3936f58269902 /content/docs/example.md
parentc3476d0fcc37f846b055f46d658afc76a99b41d3 (diff)
Cleaned up docs directory
Diffstat (limited to 'content/docs/example.md')
-rw-r--r--content/docs/example.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/content/docs/example.md b/content/docs/example.md
new file mode 100644
index 0000000..cdef287
--- /dev/null
+++ b/content/docs/example.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 &amp; 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';
+ }
+}
+```