Skip to content

Commit

Permalink
Update create.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwieds committed Jul 23, 2023
1 parent a466981 commit 3788e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion special/master/pages/admin/posts/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ <h4 class="alert-heading">Aw snap!</h4>
markdown = markdown.replace(/\n{3,}/g,'\n\n')

// Replace any multiple spaces with one
markdown = markdown.replace(/\s+/g, ' ');
markdown = markdown.replace(/ +/g, ' ');

// Trim
markdown = markdown.trim()
Expand Down

0 comments on commit 3788e27

Please sign in to comment.