I'm making an app that splits the markdown content like the one below into a string of '---' and displays it as a slide. However, even if there is table markdown as shown below, it is split together and an error occurs. How can I split only '---' as a string, excluding table markdown?
# Title
---
|hello|world|
|---|---|
|asd|zxc|
^---$in regex to exclude pattern with three dashes.