Skip to content

Commit

Permalink
Allow emojis to be rendered (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark1626 authored and ry committed Sep 3, 2019
1 parent 85f4ad3 commit a7fd311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render_markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { Converter } = require("showdown");
const response = require("./response");
const { escapeHtml } = require("./utils");

const converter = new Converter({ tables: true });
const converter = new Converter({ emoji: true, tables: true });

module.exports = function renderMarkdown(pathname, source, repo) {
const url = `https://deno.land${pathname}`;
Expand Down

0 comments on commit a7fd311

Please sign in to comment.