-
Notifications
You must be signed in to change notification settings - Fork 857
Integration with external libraries and tools
Sylvain Abélard edited this page Dec 18, 2019
·
5 revisions
- FoldingText Support using AppleScript
- Keynote to Markdown conversion
- The R interface via the xaringan package (additional features: create slides via R Markdown, live reload in browser, and MathJax just works)
- Remarker NPM tool to build remark presentations
- Decktape to export PDF, if your browser's printing isn't good enough
<title>Title</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
<textarea id="source">
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
Code:
def add(a,b)
a + b
end
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>