Authored by 0xbyt4. The italic regex [^*]+ matched across newlines, corrupting bullet lists using * markers (e.g. '* Item one\n* Item two' became italic garbage). Fixed by adding \n to the negated character class: [^*\n]+.