就是想要知道能够显示编辑器行号的在线编辑器是什么

例如这段代码,什么编辑器可以让他显示行号呢?

server {
    #$root_path '/home/www/wordpress/public';

    listen  80;
    server_name www.wordpress.com admin.wordpress.com m.wordpress.com;
    index index.php index.html index.htm;
    root /home/www/wordpress;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    

    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /usr/local/nginx/conf/fastcgi_params;
    }

    location ~* ^/(css|img|js|flv|swf|font)/(.+)$ {
        root /home/www/wordpress;
    }

    location ~ /\.ht {
        deny all;
    }
    
    access_log  /home/wwwlogs/wordpress.log  access;
    error_log  /home/wwwlogs/wordpress_error.log;
}
阅读 4k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
宣传栏