aboutsummaryrefslogtreecommitdiff
path: root/tmpl
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-02-18 00:52:10 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-02-18 00:52:10 +0100
commit898cbafe87a2ab4ff347ebaf9e4b7d04506ad764 (patch)
tree59e752cfbd6f7819ce2762af33b7ee3ae307d75a /tmpl
parentbfe3ddc72d6aa90e32bdcfd2ed5b611578072bd7 (diff)
Switch to Markdown
Diffstat (limited to 'tmpl')
-rw-r--r--tmpl/doc35
1 files changed, 0 insertions, 35 deletions
diff --git a/tmpl/doc b/tmpl/doc
deleted file mode 100644
index b6b84aa..0000000
--- a/tmpl/doc
+++ /dev/null
@@ -1,35 +0,0 @@
-{{define "heading"}}
- <h4>{{.}}</h4>
-{{end}}
-
-{{define "link"}}
- <a href="{{.}}">{{.}}</a>
-{{end}}
-
-{{define "img"}}
- <img src="{{.}}">
-{{end}}
-
-{{define "par"}}
- <p>{{.}}</p>
-{{end}}
-
-{{define "pre"}}
- <pre>{{.}}</pre>
-{{end}}
-
-{{define "list"}}
-<ul>
- {{range .}}
- <li>{{.}}</li>
- {{end}}
-</ul>
-{{end}}
-
-{{define "olist"}}
-<ol>
- {{range .}}
- <li>{{.}}</li>
- {{end}}
-</ol>
-{{end}}