1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![doc = include_str!("readme.md")] // No imports needed for now /// Notedown document structure pub struct NoteDocument { // Top-level document structure } impl NoteDocument { /// Create a new empty document pub fn new() -> Self { Self {} } }