cmark

My personal build of CMark ✏️

Commit
76e133cafe0f45e44c57e391c67af1c2f0057004
Parent
1325976ea8a23d8a7939486b44ace20f41b9635a
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

Fixed comment.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified js/stmd.js 2 1 1
diff --git a/js/stmd.js b/js/stmd.js
@@ -342,7 +342,7 @@ var parseEmphasis = function(inlines) {
       if (res.numdelims >= 1 && res.numdelims <= 3 && res.can_close &&
             res.numdelims != first_close_delims) {
         if (res.numdelims === 3) {
-          // If we opened with ***, then we interpret *** as * followed by **
+          // If we opened with ***, then we interpret *** as ** followed by *
           // giving us <strong><em>
           res.numdelims = 1;
         }