docify_test 0.1.1

A test crate for Docify functionality
Documentation

//! A test crate for Docify functionality
//!
//! This crate demonstrates how to use Docify to embed code examples in documentation.
/// This function demonstrates Docify's embed functionality.
///
/// Here's an example function:
///
#[doc = docify::embed!("src/example.rs", example_function)]
///
/// And here's an example struct:
///
#[doc = docify::embed!("src/example.rs", ExampleStruct)]
///
/// We can also embed methods:
///
#[doc = docify::embed!("src/example.rs", example_method)]
pub fn docify_test() {
    println!("This function has Docify embeds in its documentation.");
}