Fable
Fable copied to clipboard
Document Refactor N2
Adjustment to previous xml docs too.
The following does not render breaks without the use of either <para> or <br/> in Rider.
/// <summary>
/// Emit a directive prologue at the calling position.
///
/// This is useful when you need to emit a directive prologue for a specific part of the code,
/// such as "use client" or "use server".
/// </summary>
/// <param name="text">Directive text</param>
let emitJsDirectivePrologue (text: obj) : unit = nativeOnly
Changes to
/// <summary>
/// <para>Emit a directive prologue at the calling position.</para>
/// <para>This is useful when you need to emit a directive prologue for a specific part of the code,
/// such as "use client" or "use server".</para>
/// </summary>
/// <param name="text">Directive text</param>
let emitJsDirectivePrologue (text: obj) : unit = nativeOnly