Ruipeng Zhang
Ruipeng Zhang
It's out of the scope of this project.
Did you put it under `your-blog/source/_authors` or `your-blog/themes/icarus/source/_authors`?
@D4mianWayne I cannot reproduce this with the latest Icarus theme. Can you check whether you are using other code highlight plugins/extensions that may interfere with the code highlighting?
It is configurable via the styles file: https://github.com/ppoffice/hexo-theme-icarus/blob/master/include/style/base.styl#L26-L30
You can simply comment your widgets out.
You can do it with [Layout Configuration Files](https://ppoffice.github.io/hexo-theme-icarus/Configuration/icarus-user-guide-configuring-the-theme/#Layout-Configuration-Files). Just create `_config.yaml` with widgets all in one column, `_config.post.yaml` with widgets in left and right columns, and `_config.page.yaml` with no widgets....
这种情况下需要手动设置`created_at`
@vafrcor I tested this and seems the functionality is fine. Test code: ```js var validator = require('../src/validator'); var person = { status: 'lifetime', }, rules = { status:'required|in:lifetime,limited', date:'required_if:status,limited|in:01,02,03,04,05,06,07,08,09,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31' };...
By "end node" do you mean the last node that must be visited? If that's so, you need to filter out solutions that do not end with a desired "end...
What about you always start with some nodes? When you find a solution, you can reverse it back so it will be the end bode?