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

github.com/saey55/hugo-elate-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsaey55 <saey55@users.noreply.github.com>2016-11-26 02:51:29 +0300
committerGitHub <noreply@github.com>2016-11-26 02:51:29 +0300
commit7e555091fb1dfab3c01abbd4908fb4460dcf8739 (patch)
tree73dc99ca686863f2e7b82e8130674e5165e9726a
parent480eda7876d0b409a822e50dd2d2ac9c1eaf667e (diff)
parent6f390b87d85ee3d236205ec455a519545112abda (diff)
Merge pull request #4 from mattwwarren/work-description-markdownify
fixes issue #3 by adding markdownify to work.description
-rwxr-xr-xlayouts/partials/work.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/work.html b/layouts/partials/work.html
index f0e8d77..9731e9c 100755
--- a/layouts/partials/work.html
+++ b/layouts/partials/work.html
@@ -5,7 +5,7 @@
<h2 class="to-animate">{{ with .Site.Params.work.title }}{{ . }}{{ end }}</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
- <h3>{{ with .Site.Params.work.description }}{{ . }}{{ end }}</h3>
+ <h3>{{ with .Site.Params.work.description }}{{ . | markdownify }}{{ end }}</h3>
</div>
</div>
</div>
@@ -31,4 +31,4 @@
</div>
</div>
</div>
- </section> \ No newline at end of file
+ </section>