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

发布于 2022-09-02 13:21:59 字数 924 浏览 15 评论 0

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

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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南七夏 2022-09-09 13:21:59

推荐两个,都挺容易上手的
codemirror

ace editor

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文