Skip to content

Browser based code editor

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

matthunz/engrave

Repository files navigation

Engrave

Text editor for desktop and the web with Rust and Dioxus.

Lookbook Demo

use dioxus::prelude::*;
use engrave::{language, Editor, UseEditor};

fn app(cx: Scope) -> Element {
    let editor = UseEditor::builder()
        .language(language::rust())
        .height(600.)
        .use_editor(cx, || include_str!("../src/editor/use_editor.rs"));

    render!(Editor { editor: editor })
}

Examples

Run examples with Dioxus using dx serve {example_name}

About

Browser based code editor

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published