Skip to content

Commit

Permalink
fix: feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj36 committed Dec 5, 2024
1 parent 9979810 commit 0b6f332
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function updateOutput() {
let sources = sourceEl.value.split('\n===');
let outputs = sources.map((x) => {
return (
'<div class="slide-wrapper"><div class="slide">' +
'<div class="slide">' +
_u.convertMarkdownToHTML(x) +
'</div></div>'
);
Expand Down
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
<body>
<div id="editor">
<textarea id="source" placeholder="Enter your markdown here..."></textarea>
<div id="output" class="markdown-body"></div>
<div id="output" class="markdown-body">
<div class="slide-wrapper">

</div>
</div>
</div>

<div id="buttons">
Expand Down

0 comments on commit 0b6f332

Please sign in to comment.