Closed
Description
Currently the ORTC specification is specifying the constructor on the same line as the interface with respec. For example:
class="idl" title="[Constructor(RTCIceTransport transport, sequence<RTCCertificate> certificates)] interface RTCDtlsTransport : RTCStatsProvider"
This is not properly rendering objects (which should be automatically linked) or attributes (which should be in italics). The correct way to do this is as follows:
<dl class="idl" title="interface RTCDtlsTransport : RTCStatsProvider ">
<dt>Constructor (RTCIceTransport transport, sequence<RTCCertificate> certificates)</dt>
<dd></dd>