Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Lawson <tylerjlawson2@gmail.com>2020-10-10 20:03:57 +0300
committerTyler Lawson <tylerjlawson2@gmail.com>2020-10-10 20:03:57 +0300
commitcb58cf05a885421df9909aea3ef8e6773bee388f (patch)
tree0452863f2575627c8e0077c3a5af510b34d60cff /layouts
parenteff608a21dbdb56d89c62b391a80acc1f53b089d (diff)
print styling, added example data, added markdownify to points
Diffstat (limited to 'layouts')
-rw-r--r--layouts/index.html2
-rw-r--r--layouts/partials/experiences.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html
index cfd0b41..4fdc5f9 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -23,7 +23,7 @@
<h2>{{ .name }}</h2>
<ul>
{{ range .points }}
- <li>{{ . }}</li>
+ <li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</section>
diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html
index 76acd71..3d0a464 100644
--- a/layouts/partials/experiences.html
+++ b/layouts/partials/experiences.html
@@ -8,7 +8,7 @@
</div>
<ul>
{{ range .points }}
- <li>{{ . }}</li>
+ <li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</div>