List extraction support from DocBlocks

phpDocumentor added list extraction support in 1.2.0rc1. PHPStorm should support this in the "Quick Documentation" view and therefore remove the necessarity to write HTML code for lists.

PHPStorm - Current:

    /**
     * Title
     *
     * <ul>
     * <li>Step 1</li>
     * <li>Step 2</li>
     * <li>Step 3</li>
     * </ul>
     *
     * @return void
     */
    public function foo()
    {
        // ...
    }



PHPStorm - Expected:

    /**
     * Title
     *
     * - Step 1
     * - Step 2
     * - Step 3
     *
     * @return void
     */
    public function foo()
    {
        // ...
    }



Reference: http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html
0

Please sign in to leave a comment.