#vkdocs-rs #vkdocs #vk-docs

vkdocs-rs

Supplementary VkDocs Rust library

1 unstable release

new 0.1.0 Mar 27, 2025
Download history 118/week @ 2025-03-26

118 downloads per month

BSD-3-Clause

8KB
124 lines

VkDocs-rs

VkDocs-rs is a supplementary crate for working with VK-Docs format (see open-source VK Cloud documentation for more information). This crate helps to maintain VkDocs meta files and update it correspondingly to the changes.

Example usage

Here's a basic usage of the VkDocs-rs crate.

use vkdocs::VkDocs;

// Create a documentation on a cool module.
let vkdocs = VkDocs::new("vkdoc-project");

let cool_module_path = Path::new("module/cool");
vkdocs.upsert(&cool_module_path, "Here as a documentation on a cool module.");

// Update the documentation on a cool module.
// The call automatically updates the metadata.
vkdocs.upsert(&cool_module_path, "Here as a newer documentation on a cool module.");

If you also want to generate template-based Markdown documentation files we recommend to use Tera crate.

Dependencies

~2.2–3.5MB
~63K SLoC