foodoc.js
来自「JsDoc Toolkit 是一个把js描述格式化成文档的工具。开发者只需按Js」· JavaScript 代码 · 共 27 行
JS
27 行
/** This is the main container for the FOODOC handler. @namespace*/FOODOC = {};/** The current version string of this application. */FOODOC.VERSION = "1.0";FOODOC.handle = function(srcFile, src) { LOG.inform("Handling file '" + srcFile + "'"); return [ new JSDOC.Symbol( "foo", [], "VIRTUAL", new JSDOC.DocComment("/** This is a foo. */") ) ];};FOODOC.publish = function(symbolgroup) { LOG.inform("Publishing symbolgroup.");};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?