aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-02-22 05:17:30 -0500
committerkj_sh6042026-02-22 05:17:30 -0500
commita7467a7ecc8520c124fb9765dc53359e7977ad08 (patch)
treee3be9e9a4295d98e642de542fe305eca2f60b1e4
parenteb1d4ef955fef6f8f328c5cd5ade6fca733124be (diff)
refactor: prep for future emoji support
Diffstat (limited to '')
-rw-r--r--src/VERSION2
-rw-r--r--src/download.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/VERSION b/src/VERSION
index 86b33cf..b3efec2 100644
--- a/src/VERSION
+++ b/src/VERSION
@@ -1 +1 @@
-2026.02.22-0354
+2026.02.22-0517
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'";