In the previous lesson, we learned how to match the beginning and end of a string.
But what if we want to match the beginning and end of each line in a multi-line string?
That’s where you can use m flag.
The m flag changes the meaning of ^ and $ so they match the beginning and end of each line.
Not just the beginning and end of the whole text.
Hint: The m flag doesn’t automatically include the g flag
Match every line that is a quote