CommentList::render PHP Method

render() public method

Rendering of comments for API demonstration and testing purposes (or feel free to use for production if suitable)
See also: Comment::render()
public render ( ) : string
return string or blank if no comments
    public function render()
    {
        $out = $this->renderList(0);
        if ($out) {
            $out = "\n" . $this->options['headline'] . $out;
        }
        return $out;
    }