Skip to documentation
SLOP

tiny.zen.RenderedMarkdown

Reference tiny.zen RenderedMarkdown

Defined in markdown.

Owns the rendered HTML and the storage borrowed by its document view.

API (4)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callsmarkdownRendered
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/zen/src/markdown.zig:171

zig
/// Owns the rendered HTML and the storage borrowed by its document view./// Release it with `deinit` and the allocator passed to `render`.pub const Rendered = struct {    html: []u8,    document: document.Document,    document_storage: document.Storage,    pub fn deinit(self: *Rendered, allocator: Allocator) void {        allocator.free(self.html);        self.document_storage.reset();        self.document_storage.deinit(allocator);        self.* = undefined;    }};

Source: lib/zen/src/root.zig:204

zig
pub const RenderedMarkdown = markdown.Rendered;

Audit

Definitions2
Public names4
Members3
Version26.7.0
Revisiondaab053ee433