{{~#with comment~}}
    {{~#if shortText~}}
        <div class="tsd-comment tsd-typography tsd-comment-shorttext">
            <div class="lead">
                {{#markdown}}{{{shortText}}}{{/markdown}}
            </div>
        </div>
    {{~/if~}}
    {{~#if text~}}
        <div class="tsd-comment tsd-typography tsd-comment-text">
            {{#markdown}}{{{text}}}{{/markdown}}
        </div>
    {{~/if~}}
    {{~#if tags~}}
        <div class="tsd-comment tsd-typography tsd-comment-tags">
            <dl class="tsd-comment-tags">
                {{~#each tags~}}
                    <dt>{{tagName}}</dt>
                    <dd>{{#markdown}}{{{text}}}{{/markdown}}</dd>
                {{~/each~}}
            </dl>
        </div>
    {{~/if~}}
{{~/with~}}