Just a simple Remark Js slideshow tool.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<title>My Slideshow</title>
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
|
<style type="text/css">
|
|
|
body{
|
|
|
font-size: 2em;
|
|
|
}
|
|
|
.remark-code {
|
|
|
border-radius: 6px;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<textarea id="source">
|
|
|
{{slides}}
|
|
|
</textarea>
|
|
|
<script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
|
|
|
</script>
|
|
|
<script type="text/javascript">
|
|
|
var slideshow = remark.create({
|
|
|
highlightLanguage: "javascript",
|
|
|
highlightInline: true,
|
|
|
highlightStyle: "monokai"
|
|
|
});
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|