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.
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
| Definitions | 2 |
|---|---|
| Public names | 4 |
| Members | 3 |
| Version | 26.7.0 |
| Revision | daab053ee433 |