diff --git a/client/client b/client/client
deleted file mode 100755
index 3b6cb21..0000000
Binary files a/client/client and /dev/null differ
diff --git a/db/tasks.go b/db/tasks.go
index b2d8396..09bd506 100644
--- a/db/tasks.go
+++ b/db/tasks.go
@@ -9,6 +9,7 @@ DeleteAll()
import (
"database/sql"
+ "html/template"
"log"
"strconv"
"strings"
@@ -135,7 +136,7 @@ func GetTasks(username, status, category string) (types.Context, error) {
task.CompletedMsg = strconv.Itoa(taskCompleted) + " complete out of " + strconv.Itoa(totalTasks)
}
- task.Content = string(md.Markdown([]byte(task.Content)))
+ task.ContentHTML = template.HTML(md.Markdown([]byte(task.Content)))
// TaskContent = strings.Replace(TaskContent, "\n", "
", -1)
if err != nil {
log.Println(err)
diff --git a/templates/home.html b/templates/home.html
index 94e9590..70df0bb 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -59,7 +59,7 @@