blob: 9b8d29b7670c0a04e46991a1887638396fc8710b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php session_start(); ?>
<!DOCTYPE html>
<html lang=en>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>procrastiSlides: great for procratinators who need to get a presentation out, quick! 😆</title>
<meta name="description" content="create .pdf presentations from markdown! 🤗 procrastiSlides is a simple presentation(s) site that respects your dark mode setting and has responsive web design.
non-intruisive ads, no tracking, nothing but quick slides from plain text/markdown. 🏫 try copy and pasting your school notes! that might even work 😂">
<?php include "includes/link-tags-in-head.php"; ?>
<meta name="color-scheme" content="light dark">
</head>
<body>
<?php
include "includes/procrastislides-banner.php";
include "includes/secondary-info.php";
include "includes/nav-header.php";
?>
<br>
<h3 class="centered">🎉 your procrastiSlides .pdf presentation has been generated successfully!!! 🍾
</h3>
<h3 class="centered">📂 your download link is below: 🗃
</h3>
<div class="centered">
<?php
function generatePresentation($templateFile)
{
$pres = $_SESSION["pres"] = uniqid("pres", true) . ".md"; // filename of the template file with metadata
$push = $_SESSION["push"] = uniqid("push", true) . ".md"; // filename of where the user data is stored
$convert = $_SESSION["convert"] = uniqid("convert", true) . ".md"; // concatenated file to be converted to .pdf
$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";
$createPushFile = "echo $userMarkdown | iconv -c -t ASCII//TRANSLIT | sed 's/'\"'\"'/’/g' > output/'$push'";
$createConvertFile = "cat $templateFile output/'$push' > output/'$convert'";
shell_exec($createPushFile);
shell_exec($createConvertFile);
shell_exec($conversion);
echo "<h2><a href=\"output/$filename\" target=_blank>download presentation</a></h2>";
}
if (isset($_POST["90sMakeUpCommercial"])) {
generatePresentation("output/90sMakeUpCommercial.md");
} elseif (isset($_POST["chicagoOlives"])) {
generatePresentation("output/chicagoOlives.md");
} elseif (isset($_POST["redmond2013"])) {
generatePresentation("output/redmond2013.md");
} elseif (isset($_POST["ohioCustard"])) {
generatePresentation("output/ohioCustard.md");
} elseif (isset($_POST["raleighAroundMe"])) {
generatePresentation("output/raleighAroundMe.md");
} elseif (isset($_POST["earlyCupertino"])) {
generatePresentation("output/earlyCupertino.md");
} elseif (isset($_POST["defaultIsKing"])) {
generatePresentation("output/defaultIsKing.md");
} elseif (isset($_POST["strengthInNumbers"])) {
generatePresentation("output/strengthInNumbers.md");
} elseif (isset($_POST["thatMagazine"])) {
generatePresentation("output/thatMagazine.md");
} elseif (isset($_POST["cuppertinoIsh"])) {
generatePresentation("output/cuppertinoIsh.md");
} elseif (isset($_POST["lazyProfessor"])) {
generatePresentation("output/lazyProfessor.md");
} elseif (isset($_POST["redmond2003"])) {
generatePresentation("output/redmond2003.md");
}
?>
</div>
<br><br>
<footer>
<?php include "includes/nav-footer.php"; ?>
</footer>
</body>
</html>
|