syncdoc
syncdoc is a procedural macro that automatically injects documentation from external files into your Rust code, eliminating the need to manually maintain inline doc comments.
Use syncdoc when you want to keep documentation separate from implementation.
Stick with inline docs when you prefer co-location of docs and code.
Motivation
When writing extensive documentation, keeping it inline can make code harder to read:
/// This is a very long doc comment
/// that spans many lines and makes
/// the actual function hard to see...
/// [more lines]
/// Another long doc comment
/// [many more lines]
syncdoc solves this by automatically pulling documentation from external files:
use omnidoc;
Installation
Add syncdoc to your Cargo.toml:
[]
= "0.1"
Usage
Basic Usage
Apply the #[omnidoc] attribute to any module:
use omnidoc;
This will look for documentation in:
../docs/my_functions/foo.md../docs/my_functions/bar.md
Documenting Impl Blocks
syncdoc also works on impl blocks:
use omnidoc;
;
Documentation files:
../docs/Calculator/new.md../docs/Calculator/add.md
Single Function Documentation
You can also document individual functions:
use syncdoc;
How It Works
syncdoc uses a procedural macro to inject #[doc = include_str!("path")] attributes before function definitions.
It uses proc-macro2 (it's free of syn!) to parse tokens rather than doing full AST creation.
Implementation Details
The macro:
- Parses tokens to find function definitions
- Constructs doc paths based on module hierarchy and function names
- Injects doc attributes using
include_str!for compile-time validation - Preserves existing attributes and doesn't interfere with other macros
What Gets Documented
- Regular functions:
fn foo() { ... } - Generic functions:
fn foo<T>(x: T) { ... } - Methods in impl blocks:
impl MyStruct { fn method(&self) { ... } } - Trait default methods:
trait MyTrait { fn method() { ... } }
File Organization
my-project/
├── src/
│ ├── lib.rs
│ └── parser/
│ └── mod.rs #[omnidoc(path = "../../docs")]
└── docs/
└── parser/
├── parse_expr.md
└── parse_stmt.md
License
This project is licensed under either of:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.