Skip to content

Commit

Permalink
fix issue with parsing markdown notes inside of non-markdown slide #2970
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Jun 9, 2021
1 parent 1be8516 commit aab4c0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin/markdown/markdown.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugin/markdown/markdown.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugin/markdown/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const Plugin = () => {

var externalPromises = [];

[].slice.call( scope.querySelectorAll( '[data-markdown]:not([data-markdown-parsed])') ).forEach( function( section, i ) {
[].slice.call( scope.querySelectorAll( 'section[data-markdown]:not([data-markdown-parsed])') ).forEach( function( section, i ) {

if( section.getAttribute( 'data-markdown' ).length ) {

Expand Down

0 comments on commit aab4c0c

Please sign in to comment.