You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when the first line of a slide starts with a single word and a colon, this line is not shown on the slide.
I suppose the reason is that it is processed as a slide property "name class background-image count template layout".
Since it's not unlikely for slide content to start with word and a colon, an improvement would be to limit the 'disappearing' to lines starting with the listed keywords. Other words have no effect at all on the slides, unless I'm mistaking?
Here's an example:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<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);
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>
</head>
<body>
<textarea id="source">
class: center, middle
# Title
---
word: A slide starting with "word:".
The first line above is showing?
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>
The text was updated successfully, but these errors were encountered:
Hi,
when the first line of a slide starts with a single word and a colon, this line is not shown on the slide.
I suppose the reason is that it is processed as a slide property "name class background-image count template layout".
Since it's not unlikely for slide content to start with word and a colon, an improvement would be to limit the 'disappearing' to lines starting with the listed keywords. Other words have no effect at all on the slides, unless I'm mistaking?
Here's an example:
The text was updated successfully, but these errors were encountered: