From b152e50d294b6343952364acc3920ceeef6fcc5e Mon Sep 17 00:00:00 2001 From: Pav Andriychenko Date: Tue, 24 Jan 2017 09:01:53 +0000 Subject: [PATCH] #15 Add mailto to markdown.ejs --- templates/markdown.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/markdown.ejs b/templates/markdown.ejs index c1ca87d..28aefd6 100644 --- a/templates/markdown.ejs +++ b/templates/markdown.ejs @@ -1,7 +1,7 @@ <% commits.forEach(function (commit) { %> * __<%= commit.title %>__ - [<%= commit.authorName %>](<%= commit.authorEmail %>) - <%= commit.committerDate %> + [<%= commit.authorName %>](mailto:<%= commit.authorEmail %>) - <%= commit.committerDate %> <%= commit.messageLines.join("\n ") %> -<% }) %> \ No newline at end of file +<% }) %>