2 unstable releases
0.2.0 | Apr 30, 2024 |
---|---|
0.1.0 | Apr 26, 2024 |
#2240 in Parser implementations
50 downloads per month
Used in doorstop-reqif
23KB
481 lines
Doorstop library in rust
This library helps reading doorstop documents.
Features
- Parsing documents
Roadmap
- Add items links
- Add custom attributes
Related Links
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
lib.rs
:
Help library to read doorstop documents implemented in Rust.
Here an example of how to read a document tree and print the elements of the root document sorted by level
use crate::doorstop_rs::doorstop::document_tree::DocumentTree;
let document_tree = DocumentTree::load("resources/reqs").unwrap();
let root_document = &document_tree.borrow().document;
for (_, each_item) in root_document.items_sorted_by_level.iter() {
let default_string_value = "N/A".to_string();
println!(
"{}-({}){}",
each_item.id.as_ref().unwrap_or_else(|| &default_string_value),
each_item.level.as_ref().unwrap_or_else(|| &default_string_value),
each_item.header.as_ref().unwrap_or_else(|| &default_string_value)
)
}
Dependencies
~4–12MB
~142K SLoC