fix markdown example

This commit is contained in:
Hakim El Hattab 2020-03-09 09:33:27 +01:00
parent 49bb498d9d
commit 3f95a21009
4 changed files with 18 additions and 7 deletions

2
dist/reveal.css vendored
View file

@ -1,5 +1,5 @@
/*! /*!
* reveal.js 4.0.0-dev (Sat Mar 07 2020) * reveal.js 4.0.0-dev (Mon Mar 09 2020)
* https://revealjs.com * https://revealjs.com
* MIT licensed * MIT licensed
* *

4
dist/reveal.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -810,7 +810,7 @@ export default function( revealElement, options ) {
if( config.postMessage ) { if( config.postMessage ) {
window.addEventListener( 'message', event => { window.addEventListener( 'message', event => {
const data = event.data; let data = event.data;
// Make sure we're dealing with JSON // Make sure we're dealing with JSON
if( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) { if( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {

View file

@ -6,8 +6,8 @@
<title>reveal.js - Markdown Demo</title> <title>reveal.js - Markdown Demo</title>
<link rel="stylesheet" href="../../css/reveal.css"> <link rel="stylesheet" href="../../dist/reveal.css">
<link rel="stylesheet" href="../../css/theme/white.css" id="theme"> <link rel="stylesheet" href="../../dist/theme/white.css" id="theme">
<link rel="stylesheet" href="../../lib/css/monokai.css"> <link rel="stylesheet" href="../../lib/css/monokai.css">
</head> </head>
@ -18,6 +18,17 @@
<div class="slides"> <div class="slides">
<section data-markdown>
```php
public function foo()
{
$foo = array(
'bar' => 'bar'
)
}
```
</section>
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines --> <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
<section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section> <section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section>
@ -109,7 +120,7 @@
</div> </div>
</div> </div>
<script src="../../js/reveal.js"></script> <script src="../../dist/reveal.min.js"></script>
<script> <script>