mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
24 lines
513 B
HTML
24 lines
513 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Gutenberg</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Console API</p>
|
|
|
|
<script type="application/javascript">
|
|
console.log("a simple message")
|
|
console.debug("a debug message")
|
|
console.warn("a warning message")
|
|
console.error("an error message")
|
|
</script>
|
|
<script type="application/javascript">
|
|
throw new Error("Exception 1")
|
|
</script>
|
|
<script type="application/javascript">
|
|
throw new Error("Exception 2")
|
|
</script>
|
|
</body>
|
|
</html> |