734

(JS)Documentare automata a codului js

Am inceput sa scriu un framework js si as vrea sa documentez cat mai reusit codul. Am documentat functiile pina acuma in stilul cum o face VS (asa dupa parerea mea e cel mai reusit, dar nu in asta e pb-ul). Vreau o utilita sau ceva de genul asta care sa creeze fisiere html, care ar contine aceasta documentatie in mod automat. Spre exemplu am in acest framework functii care le-am documentat in stilul:/// /// Parse string path to an object, and return corresponding object reference and property name./// /// /// /// Path to an object, in the form "A.B.C"./// Object to use as root of path. Defaults to 'dadus_global'./// If true, Objects will be created at any point along the 'path' that is undefined./// Returns an object with two properties, 'obj' and 'prop'.Where obj[prop]' is the reference indicated by 'path'dadus.parseObjPath = function(/*String*/ path, /*Object?*/ context, /*Boolean?*/ create){ ...}Cum as putea obtine o documentatie a acestor fisiere js in html, chm, pdf?
0