获取 gitbook head 中文件的路径
这个问题涉及获取特定文件路径的可能性。
例如,为了获取一些内容,在页面加载到 gitbook 之前,可以在“head:end”中添加一些自定义项。当我们需要在 `.
module.exports = {
book: {
...
/* Load files */
html: {
'head:end': function(current){
console.log()
var p = current.basePath+"/"+current.staticBase+"/plugins/myplugin/jquery-latest.min.js";
...
}
...
获取 gitbook 块中文件的路径
但是在自定义块中,我该怎么做?
blocks: {
myblock: {
process: function(current) {
//current isnt same... :(
// h
console.log(current);
var p = current.basePath+"/"+current.staticBase+"/plugins/myplugin/"+current.args[0];