aboutsummaryrefslogtreecommitdiffstats
path: root/src/download.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/download.php')
-rw-r--r--src/download.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/download.php b/src/download.php
index 90f0521..ab33991 100644
--- a/src/download.php
+++ b/src/download.php
@@ -37,7 +37,7 @@
$filename = $_SESSION["filename"] = uniqid("procrastiSlides_", true) . ".pdf"; // output file name
$userMarkdown = escapeshellarg($_SESSION["user-input"]);
- $conversion = "pandoc -f markdown+hard_line_breaks output/'$convert' -t beamer -o output/'$filename' --pdf-engine=pdflatex --include-in-header=output/header.tex";
+ $conversion = "pandoc -f markdown+emoji+hard_line_breaks output/'$convert' -t beamer -o output/'$filename' --pdf-engine=pdflatex --include-in-header=output/header.tex";
$createPushFile = "echo $userMarkdown | iconv -c -t ASCII//TRANSLIT | sed 's/'\"'\"'/’/g' > output/'$push'";
$createConvertFile = "cat $templateFile output/'$push' > output/'$convert'";