Timur Kamaev

Results 4 comments of Timur Kamaev

Found decision of the problem. Maybe will be helpful ``` protected $StrongRegex = array( '*' => '/^[*]{2}((?:\\\\\*|[^*]|[*][^*]*[*])+?)[*]{2}(?![*])/s', '_' => '/^__((?:\\\\_|[^_]|_[^_]*_)+?)__(?!_)/us', ); ``` add `\n` ``` '*' => '/^[*]{2}((?:\\\\\*|[^*]|[*][^*]*[*])+?)[*]{2}(?![*])/s', '_' =>...

One more little research based on [spec.commonmark.org](http://spec.commonmark.org/dingus/) parser. `_` and `*` parsess differently. Ex: ``` post__in foo bar post__in ``` becomes ``` post__in foo bar post__in ``` but if we...

WP use [wp_get_nocache_headers()](https://wp-kama.com/function/wp_get_nocache_headers) to set no-cache headers for logged in users. It seams, You can modify this header to control cashing in Surge. Example: somewhere in the theme's functions.php: ```...

More details about this issue. If xDebug disabled we get memory limit fatal error: ``` Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes) in...