Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFix automatic list level repeat #17
Conversation
When having an input line like `*** *something bold*` and hitting return, the automatic repeat item level insertion fails, due to a to simple regex which counts every occurance of a `*`, leading to additional stars added to the beginning of the next line. This PR solves this by only matching consecutive stars and sharps.
When having an input line like
*** *something bold*and hitting return, the automatic repeat item level insertion fails, due to a to simple regex which counts every occurance of a*, leading to additional stars added to the beginning of the next line.This PR solves this by only matching consecutive stars and sharps.