yuidoc

    1熱度

    1回答

    如何在Ruby中使用YUIDoc評論?我能想出的最好的是這樣的: ##* # Get Query history # @type {Array} Past search query objects # @param {int} limit The number of objects to return. Defaults to 10. (Max 100).

    1熱度

    2回答

    這裏我以一個emberJS控制器爲例。如何正確評論它使用YUIDoc生成文檔? import Ember from 'ember'; /** * ? */ export default Ember.Controller.extend({ queryParams: ['param1', 'param2'], /** * ? */ para

    3熱度

    1回答

    我試圖用yuidoc(http://yui.github.io/yuidoc/)來記錄我的node.js模塊,我想知道如何創建從param到其實現的鏈接。 比方說,我有以下src/core/Repo.js /** * Repo * @class Repo * @module core */ var Repo = function() { /** * Insert st

    7熱度

    2回答

    我想爲使用YUIDoc的JavaScript方法編寫一些文檔。它看起來像: /** Returns an instance of className @method getInstance @param {string} className the of the class used to create the instance @param {Objec

    1熱度

    2回答

    我花了最近4天試圖讓yuidoc解析我的javascript框架,它真的開始讓我瘋了。 這裏是我的JSON配置文件 { linkNatives: 'true', attributesEmit: 'true', paths: [ '..\\\\layers' ], outdir: '../docs/', port: 3000, nocode: tru

    1熱度

    2回答

    我不能在文檔中找到它。 我寧願是有顯示在生成的文檔[{id: String, label: String}]類型和實驗使我認爲,我可以做的唯一事情就是指定一個字母,只有字符串,沒有任何其他字符(它們被忽略發電機)。 難道真的沒有辦法嗎?

    1熱度

    1回答

    是否可以忽略yuidoc中的各種標籤以使文檔構建過程消息更有用。 我有一個問題,像@author標籤,@date等 /** * The XYZ View ... * These tags yuidoc result in a yuidoc warning * * @company <company name> * @date Mon Aug 27 2013 22:30:50 GMT+02

    6熱度

    1回答

    我一直在玩YUIDoc,我覺得這太棒了定義自定義主頁面。 順便說一下,我沒有找到一種方法來爲自動生成的文檔網站(自動生成的index.html內的自定義內容)定義我自己的主頁內容。 我該如何定義主頁面內容 - 如果這是可能的,當然 - ? 預先感謝您!

    1熱度

    1回答

    我正在用yuidoc編寫文檔。但是,我有一個類模型,其中有一個在其他地方定義的方法。以下是一些可視化情況的代碼。 假設我有一個文件model.js: /** * @class Model * @constructor */ window.Model = function(){} .... 和文件activerecord.js: (function(){ /** *