I reference to CSSDoc specification and want to generate comment documentation from css file. The first thought used phpdocumentor tool. When execute phpdoc -o HTML:frames:default -f main.css -t docs command, i got "File not parsed,not a php file" error message. Please tell me how to generate documentation from css file by auto-documentation tools. Should be used Doxygen,JavaDoc tool or write a new parser with existing tools. Thanks~~~~
|
| |||
feedback
|
|
If you need to write a new parser, you may want to try this PHP package parsing HTML, XML, DTD and CSS. They return tokens for each element of the parsed document. From then on you can wrap your own parser to treat each of the CSS elements. | |||
|
feedback
|