Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rlespinasse/drawio-exporter
Command Line Client To Enhance Files Export Using Draw.io Application
https://github.com/rlespinasse/drawio-exporter
command-line drawio drawio-batch drawio-tools hacktoberfest rust-crate rust-lang
Last synced: 2 months ago
JSON representation
Command Line Client To Enhance Files Export Using Draw.io Application
- Host: GitHub
- URL: https://github.com/rlespinasse/drawio-exporter
- Owner: rlespinasse
- License: mit
- Created: 2021-01-26T21:24:53.000Z (almost 4 years ago)
- Default Branch: v1.x
- Last Pushed: 2024-05-01T19:49:17.000Z (8 months ago)
- Last Synced: 2024-05-02T01:19:50.024Z (8 months ago)
- Topics: command-line, drawio, drawio-batch, drawio-tools, hacktoberfest, rust-crate, rust-lang
- Language: Rust
- Homepage: https://crates.io/crates/drawio-exporter
- Size: 155 KB
- Stars: 16
- Watchers: 4
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.adoc
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
= drawio-exporter
Drawio-exporter provides enhanced capabilities to the export feature of drawio-desktop.
== Features
* Recursive export
* Partial export (newer, or based on git reference)
* Additional export formats with link extraction== Supported Export formats
* **draw.io** export formats: jpg, pdf, png, svg, vsdx, and xml
* **drawio-exporter** additional formats
** adoc - Export in PNG and create an additional asciidoc file (with support external links).
** md - Export in PNG and create an additional markdown file (with support external links).== Installation
* Via https://doc.rust-lang.org/cargo/getting-started/installation.html[Cargo]
+
[source,shell]
----
cargo install drawio-exporter
----* Build Manually
+
[source,shell]
----
git clone --depth 1 [email protected]:rlespinasse/drawio-exporter.git ~/.drawio-exporter
cd ~/.drawio-exporter
cargo install --path .
cargo build --release
# put the resulting `target/release/drawio-exporter` executable on your PATH.
----== Used by
* Docker image https://github.com/rlespinasse/drawio-export[**rlespinasse/drawio-export**] which use the export capabilities of this tool,
** And GitHub Action https://github.com/rlespinasse/drawio-export-action[**rlespinasse/drawio-export-action**] which is build on top of **drawio-export** docker image.== Contributing
Pull requests are welcome.
For major changes, please open an issue first to discuss what you would like to change.Please make sure to update tests as appropriate.