使用快捷码禁用自动格式化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用快捷码禁用自动格式化相关的知识,希望对你有一定的参考价值。

  1. function my_formatter($content) {       
  2. $new_content = '';       
  3. $pattern_full = '{([raw].*?[/raw])}is';       
  4. $pattern_contents = '{[raw](.*?)[/raw]}is';       
  5. $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);       
  6. foreach ($pieces as $piece) {               
  7. if (preg_match($pattern_contents, $piece, $matches)) {                       
  8. $new_content .= $matches[1];               
  9. } else {                       
  10. $new_content .= wptexturize(wpautop($piece));               
  11. }       
  12. }       
  13. return $new_content;
  14. }
  15. remove_filter('the_content', 'wpautop');
  16. remove_filter('the_content', 'wptexturize');
  17.  
  18. add_filter('the_content', 'my_formatter', 99);

以上是关于使用快捷码禁用自动格式化的主要内容,如果未能解决你的问题,请参考以下文章

VSCode代码格式化快捷键及保存时自动格式化

VSCODE中代码的自动格式

PHP 禁用使用短代码自动格式化

VS2015开发常用快捷键

我的excel一打开,就会是空的,快捷方式上有个感叹号,格式是xlsm?

idea提示,格式化代码,清除不使用的包快捷键,maven自动导jar包