From 20ca05be168ea187e45a60acf55632c9ecd586b7 Mon Sep 17 00:00:00 2001 From: Juan Canham Date: Tue, 17 Mar 2020 03:05:29 +0000 Subject: [PATCH] escape institution & name, make studyType optional --- src/partials/education.html | 2 +- src/partials/interests.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/partials/education.html b/src/partials/education.html index 9276d8d..770aea6 100644 --- a/src/partials/education.html +++ b/src/partials/education.html @@ -4,7 +4,7 @@

 {{{sectionTitle "Education"}}}

{{#each r.education.history}} -

{{studyType}}, {{#if url}}{{institution}}{{else}}{{institution}}{{/if}}

+ {{#if studyType}}

{{studyType}}, {{/if}}{{#if url}}{{institution}}{{else}}{{{institution}}}{{/if}}

{{#if area}}
{{area}}
{{/if}} {{formatDate safe.start 'YYYY-MM'}}—{{formatDate safe.end 'YYYY-MM'}} {{#if curriculum}} diff --git a/src/partials/interests.html b/src/partials/interests.html index bbfaecb..c20eb29 100644 --- a/src/partials/interests.html +++ b/src/partials/interests.html @@ -4,7 +4,7 @@

 {{{sectionTitle "Interests"}}}

{{#each r.interests}} -

{{name}}

+

{{{name}}}

{{{summary}}} {{#unless @last}}
 
{{/unless}} {{/each}}