1. 将请求参数进行url编码
2. 不需要编码使用<>将网址括起来
本文不对plantUML的语法进行解释,直接戳。
对url进行编码
需要编码的字符如下1
2
3abstract class AbstractList;
interface List;
List <|.. AbstractList;
涂宇的博客
1. java中LinkedList是单链表实现还是双链表实现?
2. java中LinkedList节点元素的结构是怎样的?
3. java中LinkedList的get(int index)方法是如何实现的?以及add()方法是如何实现的?
在博客根目录下找到scripts文件夹,如果没有就创建该文件夹,在scripts文件夹中创建open.js,内容如下:1
2
3
4
5var spawn = require('child_process').spawn;
hexo.on('new', function(data){
spawn('open', ['-a', '/Applications/Visual\ Studio\ Code.app', data.path]);
});
当我们在博客根目录下使用终端新建文件时会使用VScode编辑器打开该文章,可以方便地进行编辑1
hexo new article_name
参考链接
关于HashMap的几个基本问题:
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing