diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/text.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index 9c59a9908..666d90838 100644 --- a/include/text.php +++ b/include/text.php @@ -865,6 +865,7 @@ function get_tags($s) { // ignore anything in a code or svg block $s = preg_replace('/\[code(.*?)\](.*?)\[\/code\]/sm','',$s); $s = preg_replace('/\[svg(.*?)\](.*?)\[\/svg\]/sm','',$s); + $s = preg_replace('/\[toc(.*?)\]/sm','',$s); // ignore anything in [style= ] $s = preg_replace('/\[style=(.*?)\]/sm','',$s); |