mmd.js icon indicating copy to clipboard operation
mmd.js copied to clipboard

Add <hr> support

Open CarsonSlovoka opened this issue 4 years ago • 0 comments

old: https://github.com/p01/mmd.js/blob/cd7f4872174bb29ef853f880119909dc70b7b4eb/mmd.js#L23-L25

new:

.forEach(function(b, f, R) 
 {
        if (b === "----") {  // 👈 add this
             h += `<hr>`
             return
        } 
 	f=b[0]; 
        // ...

CarsonSlovoka avatar Nov 09 '21 08:11 CarsonSlovoka