This is a documentation tool for godot-rust projects.
WARNING: very unstable at the moment.
The goal of this tool is to automate writing documentation in Rust code that will be used in gdscript.
An example: process
function
Input: Rust
`rust
/// Process the given [`String`], returning [`FAILED`] on error.
///
/// # Example
///
gdscript
/// var processor = Myprocessor.new()
/// assert_eq(processor.process("hello"), OK)
/// ```
pub fn process(&mut self, _: &Node, s: GodotString) -> i32 { /* ... */ } ````
Output: Markdown
````markdown
Process the given [String
], returning [FAILED
] on error.
gdscript
var processor = Myprocessor.new()
assert_eq(processor.process("hello"), OK)
````
Output: Gut
gdscript
func test_process():
var processor = Myprocessor.new()
assert_eq(processor.process("hello"), OK)
A more complete example can be found in the examples/dijkstra-map-gd directory.
This is meant to be used as a build script: Set
toml
[build-dependencies]
gdnative-doc = "*"
In your Cargo.toml. Then you can drive the process with the Builder
structure:
```rust // in build.rs use gdnativedoc::{backend::BuiltinBackend, initlogger, Builder, LevelFilter}; use std::path::PathBuf;
fn main() -> Result<(), Box
More informations can be found in the documentation.
The format of the configuration file can be found here.
You can also use the command-line tool.
At the moment, syn is used to parse rust and search for the struct
and impl
s. This is not optimal however and might sometime mess up link resolution.
rust-analyzer libraries will probably be used in the future to avoid this.