Chen Yangjian
Chen Yangjian
I've kept myself from adopting any plugins because Github Pages only accept vanilla Jekyll. They run jekyll with `--safe` option turned on. Anyway, it's merely possible to adopt existing plugins...
I see your point. Darko uses `registerTag` internally already, for Jekyll specific tags' support. Plugins written in Ruby is a no for Darko, because that's quite absurd to do so....
Aha. It seems Github Pages have got several plugins baked in. https://help.github.com/articles/using-jekyll-plugins-with-github-pages/ Maybe I shall take these official plugins for example, see if I can manage to implement them in...
That'll require a Python installation and some stuff like `pip install pygments`, right? - http://jekyll-windows.juthilo.com/3-syntax-highlighting/
Maybe darko should support the option of specifying syntax highlighter like [current version of Jekyll](http://jekyllrb.com/docs/templates/#code-snippet-highlighting). Something like `highlighter: highlight.js` or `highlighter: pygments` in `_config.yml`. If pygments is preferred and the...
Found an alternative: https://github.com/thlorenz/peacock
@yisibl PostgreSQL 里没有类似 mysql json_merge(target, source) 的函数?这个函数比 json_set() 还要方便,leoric 里面封装了对应的 model.jsonMerge(values) 和 Model.jsonMerge(conditions, values)
需要设置多个值的时候,用 js 来示例的话就是: ```javascript Object.assign(extra, { foo: 1, bar: { baz: 2 } }) ``` 用 json_set() 的话,得写两次?
I'd prefer the second approach, such as compute(host, { lowerCase: true }), to ignore case sensitivity and to convert the parameter names in the result to lower case. Future major...
it looks like the directive value ast needs to be changed to fix this issue, I'll release a major version later