21 lines
452 B
HTML
21 lines
452 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>TP: Typst</title>
|
|
</head>
|
|
<body>
|
|
<h1>Print typst code</h1>
|
|
<form method="post">
|
|
<textarea name="source" rows="24" cols="100">
|
|
Hi from Typst!
|
|
$
|
|
sum_(i=1)^n i = integral_(i=0)^n i + n/2
|
|
$</textarea
|
|
>
|
|
<br />
|
|
<button>Print!</button>
|
|
</form>
|
|
</body>
|
|
</html>
|